forked from qt-creator/qt-creator
Maemo: Removed ifdefs for old ssh approach.
This commit is contained in:
@@ -36,11 +36,6 @@
|
||||
|
||||
#include "maemorunconfiguration.h"
|
||||
|
||||
#ifndef USE_SSH_LIB
|
||||
#include "qt4buildconfiguration.h"
|
||||
#include "qt4project.h"
|
||||
#endif // USE_SSH_LIB
|
||||
|
||||
#include <coreplugin/icore.h>
|
||||
#include <coreplugin/progressmanager/progressmanager.h>
|
||||
#include <debugger/debuggermanager.h>
|
||||
@@ -56,9 +51,6 @@
|
||||
namespace Qt4ProjectManager {
|
||||
namespace Internal {
|
||||
|
||||
#ifndef USE_SSH_LIB
|
||||
using ProjectExplorer::Environment;
|
||||
#endif // USE_SSH_LIB
|
||||
using ProjectExplorer::RunConfiguration;
|
||||
using ProjectExplorer::ToolChain;
|
||||
|
||||
@@ -67,26 +59,12 @@ AbstractMaemoRunControl::AbstractMaemoRunControl(RunConfiguration *rc)
|
||||
, runConfig(qobject_cast<MaemoRunConfiguration *>(rc))
|
||||
, devConfig(runConfig ? runConfig->deviceConfig() : MaemoDeviceConfig())
|
||||
{
|
||||
#ifndef USE_SSH_LIB
|
||||
setProcessEnvironment(deployProcess);
|
||||
connect(&deployProcess, SIGNAL(readyReadStandardError()), this,
|
||||
SLOT(readStandardError()));
|
||||
connect(&deployProcess, SIGNAL(readyReadStandardOutput()), this,
|
||||
SLOT(readStandardOutput()));
|
||||
connect(&deployProcess, SIGNAL(finished(int, QProcess::ExitStatus)), this,
|
||||
SLOT(deployProcessFinished()));
|
||||
#endif // USE_SSH_LIB
|
||||
qDebug("%s: runconfig = %p, exdecutable = %s", Q_FUNC_INFO, runConfig, qPrintable(runConfig->executable()));
|
||||
}
|
||||
|
||||
void AbstractMaemoRunControl::startDeployment(bool forDebugging)
|
||||
{
|
||||
QTC_ASSERT(runConfig, return);
|
||||
|
||||
#ifndef USE_SSH_LIB
|
||||
Core::ICore::instance()->progressManager()->addTask(m_progress.future(),
|
||||
tr("Deploying"), QLatin1String("Maemo.Deploy"));
|
||||
#endif // USE_SSH_LIB
|
||||
if (devConfig.isValid()) {
|
||||
deployables.clear();
|
||||
if (runConfig->currentlyNeedsDeployment()) {
|
||||
@@ -100,24 +78,14 @@ void AbstractMaemoRunControl::startDeployment(bool forDebugging)
|
||||
&MaemoRunConfiguration::debuggingHelpersDeployed));
|
||||
}
|
||||
|
||||
#ifndef USE_SSH_LIB
|
||||
m_progress.setProgressRange(0, deployables.count());
|
||||
m_progress.setProgressValue(0);
|
||||
m_progress.reportStarted();
|
||||
#endif // USE_SSH_LIB
|
||||
deploy();
|
||||
} else {
|
||||
#ifdef USE_SSH_LIB
|
||||
handleDeploymentFinished(false);
|
||||
#else
|
||||
deploymentFinished(false);
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
}
|
||||
|
||||
void AbstractMaemoRunControl::deploy()
|
||||
{
|
||||
#ifdef USE_SSH_LIB
|
||||
if (!deployables.isEmpty()) {
|
||||
QList<SshDeploySpec> deploySpecs;
|
||||
QStringList files;
|
||||
@@ -146,60 +114,27 @@ void AbstractMaemoRunControl::deploy()
|
||||
} else {
|
||||
handleDeploymentFinished(true);
|
||||
}
|
||||
#else
|
||||
if (!deployables.isEmpty()) {
|
||||
const Deployable &deployable = deployables.first();
|
||||
emit addToOutputWindow(this, tr("File to deploy: %1.").arg(deployable.fileName));
|
||||
|
||||
QStringList cmdArgs;
|
||||
cmdArgs << "-P" << sshPort() << options() << deployable.fileName
|
||||
<< (devConfig.uname % QLatin1Char('@') % devConfig.host
|
||||
% QLatin1Char(':') % remoteDir());
|
||||
deployProcess.setWorkingDirectory(deployable.dir);
|
||||
|
||||
deployProcess.start(runConfig->scpCmd(), cmdArgs);
|
||||
if (!deployProcess.waitForStarted()) {
|
||||
emit error(this, tr("Could not start scp. Deployment failed."));
|
||||
deployProcess.kill();
|
||||
} else {
|
||||
emit started();
|
||||
}
|
||||
} else {
|
||||
deploymentFinished(true);
|
||||
}
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
|
||||
#ifdef USE_SSH_LIB
|
||||
void AbstractMaemoRunControl::handleFileCopied()
|
||||
{
|
||||
Deployable deployable = deployables.takeFirst();
|
||||
(runConfig->*deployable.updateTimestamp)();
|
||||
m_progress.setProgressValue(m_progress.progressValue() + 1);
|
||||
}
|
||||
#endif // USE_SSH_LIB
|
||||
|
||||
void AbstractMaemoRunControl::stopDeployment()
|
||||
{
|
||||
#ifdef USE_SSH_LIB
|
||||
sshDeployer->stop();
|
||||
#else
|
||||
deployProcess.kill();
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
|
||||
bool AbstractMaemoRunControl::isDeploying() const
|
||||
{
|
||||
#ifdef USE_SSH_LIB
|
||||
return !sshDeployer.isNull() && sshDeployer->isRunning();
|
||||
#else
|
||||
return deployProcess.state() != QProcess::NotRunning;
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
|
||||
void AbstractMaemoRunControl::deployProcessFinished()
|
||||
{
|
||||
#if USE_SSH_LIB
|
||||
const bool success = !sshDeployer->hasError();
|
||||
if (success) {
|
||||
emit addToOutputWindow(this, tr("Deployment finished."));
|
||||
@@ -209,33 +144,8 @@ void AbstractMaemoRunControl::deployProcessFinished()
|
||||
}
|
||||
m_progress.reportFinished();
|
||||
handleDeploymentFinished(success);
|
||||
#else
|
||||
bool success;
|
||||
if (deployProcess.exitCode() == 0) {
|
||||
emit addToOutputWindow(this, tr("Target deployed."));
|
||||
success = true;
|
||||
Deployable deployable = deployables.takeFirst();
|
||||
(runConfig->*deployable.updateTimestamp)();
|
||||
m_progress.setProgressValue(m_progress.progressValue() + 1);
|
||||
} else {
|
||||
emit error(this, tr("Deployment failed."));
|
||||
success = false;
|
||||
}
|
||||
if (deployables.isEmpty() || !success)
|
||||
deploymentFinished(success);
|
||||
else
|
||||
deploy();
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
|
||||
#ifndef USE_SSH_LIB
|
||||
void AbstractMaemoRunControl::deploymentFinished(bool success)
|
||||
{
|
||||
m_progress.reportFinished();
|
||||
handleDeploymentFinished(success);
|
||||
}
|
||||
#endif // USE_SSH_LIB
|
||||
|
||||
const QString AbstractMaemoRunControl::executableOnHost() const
|
||||
{
|
||||
qDebug("runconfig->executable: %s", qPrintable(runConfig->executable()));
|
||||
@@ -289,62 +199,15 @@ const QString AbstractMaemoRunControl::targetCmdLinePrefix() const
|
||||
arg(executableOnTarget());
|
||||
}
|
||||
|
||||
#ifndef USE_SSH_LIB
|
||||
bool AbstractMaemoRunControl::setProcessEnvironment(QProcess &process)
|
||||
{
|
||||
QTC_ASSERT(runConfig, return false);
|
||||
Qt4BuildConfiguration *qt4bc = qobject_cast<Qt4BuildConfiguration*>
|
||||
(runConfig->project()->activeBuildConfiguration());
|
||||
QTC_ASSERT(qt4bc, return false);
|
||||
Environment env = Environment::systemEnvironment();
|
||||
qt4bc->toolChain()->addToEnvironment(env);
|
||||
process.setEnvironment(env.toStringList());
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void AbstractMaemoRunControl::readStandardError()
|
||||
{
|
||||
QProcess *process = static_cast<QProcess *>(sender());
|
||||
const QByteArray &data = process->readAllStandardError();
|
||||
emit addToOutputWindow(this, QString::fromLocal8Bit(data.constData(),
|
||||
data.length()));
|
||||
}
|
||||
|
||||
void AbstractMaemoRunControl::readStandardOutput()
|
||||
{
|
||||
QProcess *process = static_cast<QProcess *>(sender());
|
||||
const QByteArray &data = process->readAllStandardOutput();
|
||||
emit addToOutputWindow(this, QString::fromLocal8Bit(data.constData(),
|
||||
data.length()));
|
||||
}
|
||||
#endif // USE_SSH_LIB
|
||||
|
||||
// #pragma mark -- MaemoRunControl
|
||||
|
||||
|
||||
MaemoRunControl::MaemoRunControl(RunConfiguration *runConfiguration)
|
||||
: AbstractMaemoRunControl(runConfiguration)
|
||||
{
|
||||
#ifndef USE_SSH_LIB
|
||||
setProcessEnvironment(sshProcess);
|
||||
setProcessEnvironment(stopProcess);
|
||||
|
||||
connect(&sshProcess, SIGNAL(readyReadStandardError()), this,
|
||||
SLOT(readStandardError()));
|
||||
connect(&sshProcess, SIGNAL(readyReadStandardOutput()), this,
|
||||
SLOT(readStandardOutput()));
|
||||
connect(&sshProcess, SIGNAL(finished(int, QProcess::ExitStatus)), this,
|
||||
SLOT(executionFinished()));
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
|
||||
MaemoRunControl::~MaemoRunControl()
|
||||
{
|
||||
stop();
|
||||
#ifndef USE_SSH_LIB
|
||||
stopProcess.waitForFinished(5000);
|
||||
#endif
|
||||
}
|
||||
|
||||
void MaemoRunControl::start()
|
||||
@@ -363,7 +226,6 @@ void MaemoRunControl::handleDeploymentFinished(bool success)
|
||||
|
||||
void MaemoRunControl::startExecution()
|
||||
{
|
||||
#ifdef USE_SSH_LIB
|
||||
const QString remoteCall = QString::fromLocal8Bit("%1 %2 %3")
|
||||
.arg(targetCmdLinePrefix()).arg(executableOnTarget())
|
||||
.arg(runConfig->arguments().join(" "));
|
||||
@@ -375,41 +237,18 @@ void MaemoRunControl::startExecution()
|
||||
emit addToOutputWindow(this, tr("Starting remote application."));
|
||||
emit started();
|
||||
sshRunner->start();
|
||||
#else
|
||||
const QString remoteCall = QString::fromLocal8Bit("%1 %2 %3")
|
||||
.arg(targetCmdLinePrefix()).arg(executableOnTarget())
|
||||
.arg(runConfig->arguments().join(" "));
|
||||
|
||||
QStringList cmdArgs;
|
||||
cmdArgs << "-n" << "-p" << sshPort() << "-l" << devConfig.uname
|
||||
<< options() << devConfig.host << remoteCall;
|
||||
sshProcess.start(runConfig->sshCmd(), cmdArgs);
|
||||
|
||||
sshProcess.start(runConfig->sshCmd(), cmdArgs);
|
||||
emit addToOutputWindow(this, tr("Starting remote application."));
|
||||
if (sshProcess.waitForStarted()) {
|
||||
emit started();
|
||||
} else {
|
||||
emit error(this, tr("Could not start ssh!"));
|
||||
sshProcess.kill();
|
||||
}
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
|
||||
void MaemoRunControl::executionFinished()
|
||||
{
|
||||
if (stoppedByUser)
|
||||
if (stoppedByUser) {
|
||||
emit addToOutputWindow(this, tr("Remote process stopped by user."));
|
||||
#ifdef USE_SSH_LIB
|
||||
else if (sshRunner->hasError())
|
||||
} else if (sshRunner->hasError()) {
|
||||
emit addToOutputWindow(this, tr("Remote process exited with error: ")
|
||||
% sshRunner->error());
|
||||
#else
|
||||
else if (sshProcess.exitCode() != 0)
|
||||
emit addToOutputWindow(this, tr("Remote process exited with error."));
|
||||
#endif // USE_SSH_LIB
|
||||
else
|
||||
} else {
|
||||
emit addToOutputWindow(this, tr("Remote process finished successfully."));
|
||||
}
|
||||
emit finished();
|
||||
}
|
||||
|
||||
@@ -422,55 +261,31 @@ void MaemoRunControl::stop()
|
||||
if (isDeploying()) {
|
||||
stopDeployment();
|
||||
} else {
|
||||
#ifdef USE_SSH_LIB
|
||||
sshRunner->stop();
|
||||
const QString remoteCall = QString::fromLocal8Bit("pkill -x %1; "
|
||||
"sleep 1; pkill -x -9 %1").arg(executableFileName());
|
||||
sshStopper.reset(new MaemoSshRunner(devConfig, remoteCall));
|
||||
sshStopper->start();
|
||||
#else
|
||||
stopProcess.kill();
|
||||
QStringList cmdArgs;
|
||||
const QString remoteCall = QString::fromLocal8Bit("pkill -x %1; "
|
||||
"sleep 1; pkill -x -9 %1").arg(executableFileName());
|
||||
cmdArgs << "-n" << "-p" << sshPort() << "-l" << devConfig.uname
|
||||
<< options() << devConfig.host << remoteCall;
|
||||
stopProcess.start(runConfig->sshCmd(), cmdArgs);
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
}
|
||||
|
||||
bool MaemoRunControl::isRunning() const
|
||||
{
|
||||
return isDeploying()
|
||||
#ifdef USE_SSH_LIB
|
||||
|| (!sshRunner.isNull() && sshRunner->isRunning());
|
||||
#else
|
||||
|| sshProcess.state() != QProcess::NotRunning;
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
|
||||
#ifdef USE_SSH_LIB
|
||||
void MaemoRunControl::handleRemoteOutput(const QString &output)
|
||||
{
|
||||
emit addToOutputWindowInline(this, output);
|
||||
}
|
||||
|
||||
#endif // USE_SSH_LIB
|
||||
|
||||
// #pragma mark -- MaemoDebugRunControl
|
||||
|
||||
|
||||
MaemoDebugRunControl::MaemoDebugRunControl(RunConfiguration *runConfiguration)
|
||||
: AbstractMaemoRunControl(runConfiguration)
|
||||
, debuggerManager(0)
|
||||
, startParams(new Debugger::DebuggerStartParameters)
|
||||
{
|
||||
#ifndef USE_SSH_LIB
|
||||
setProcessEnvironment(gdbServer);
|
||||
setProcessEnvironment(stopProcess);
|
||||
#endif // USE_SSH_LIB
|
||||
|
||||
debuggerManager = ExtensionSystem::PluginManager::instance()
|
||||
->getObject<Debugger::DebuggerManager>();
|
||||
|
||||
@@ -522,20 +337,10 @@ void MaemoDebugRunControl::startGdbServer()
|
||||
arg(targetCmdLinePrefix()).arg(gdbServerPort())
|
||||
.arg(executableOnTarget()).arg(runConfig->arguments().join(" ")));
|
||||
inferiorPid = -1;
|
||||
#ifdef USE_SSH_LIB
|
||||
sshRunner.reset(new MaemoSshRunner(devConfig, remoteCall));
|
||||
connect(sshRunner.data(), SIGNAL(remoteOutput(QString)),
|
||||
this, SLOT(gdbServerStarted(QString)));
|
||||
sshRunner->start();
|
||||
#else
|
||||
QStringList sshArgs;
|
||||
sshArgs << "-t" << "-n" << "-l" << devConfig.uname << "-p"
|
||||
<< sshPort() << options() << devConfig.host << remoteCall;
|
||||
disconnect(&gdbServer, SIGNAL(readyReadStandardError()), 0, 0);
|
||||
connect(&gdbServer, SIGNAL(readyReadStandardError()), this,
|
||||
SLOT(gdbServerStarted()));
|
||||
gdbServer.start(runConfig->sshCmd(), sshArgs);
|
||||
#endif // USE_SSH_LIB
|
||||
}
|
||||
|
||||
void MaemoDebugRunControl::gdbServerStartFailed(const QString &reason)
|
||||
@@ -545,7 +350,6 @@ void MaemoDebugRunControl::gdbServerStartFailed(const QString &reason)
|
||||
emit finished();
|
||||
}
|
||||
|
||||
#ifdef USE_SSH_LIB
|
||||
void MaemoDebugRunControl::gdbServerStarted(const QString &output)
|
||||
{
|
||||
qDebug("gdbserver's stderr output: %s", output.toLatin1().data());
|
||||
@@ -575,43 +379,6 @@ void MaemoDebugRunControl::gdbServerStarted(const QString &output)
|
||||
disconnect(sshRunner.data(), SIGNAL(remoteOutput(QString)), 0, 0);
|
||||
startDebugging();
|
||||
}
|
||||
#else
|
||||
void MaemoDebugRunControl::gdbServerStarted()
|
||||
{
|
||||
const QByteArray output = gdbServer.readAllStandardError();
|
||||
qDebug("gdbserver's stderr output: %s", output.data());
|
||||
|
||||
const QByteArray searchString("pid = ");
|
||||
const int searchStringLength = searchString.length();
|
||||
|
||||
int pidStartPos = output.indexOf(searchString);
|
||||
const int pidEndPos = output.indexOf("\n", pidStartPos + searchStringLength);
|
||||
if (pidStartPos == -1 || pidEndPos == -1) {
|
||||
gdbServerStartFailed(output.data());
|
||||
return;
|
||||
}
|
||||
|
||||
pidStartPos += searchStringLength;
|
||||
QByteArray pidString = output.mid(pidStartPos, pidEndPos - pidStartPos);
|
||||
qDebug("pidString = %s", pidString.data());
|
||||
|
||||
bool ok;
|
||||
const int pid = pidString.toInt(&ok);
|
||||
if (!ok) {
|
||||
gdbServerStartFailed(tr("Debugging failed, could not parse gdb "
|
||||
"server pid!"));
|
||||
return;
|
||||
}
|
||||
|
||||
inferiorPid = pid;
|
||||
qDebug("inferiorPid = %d", inferiorPid);
|
||||
|
||||
disconnect(&gdbServer, SIGNAL(readyReadStandardError()), 0, 0);
|
||||
connect(&gdbServer, SIGNAL(readyReadStandardError()), this,
|
||||
SLOT(readStandardError()));
|
||||
startDebugging();
|
||||
}
|
||||
#endif // USE_SSH_LIB
|
||||
|
||||
void MaemoDebugRunControl::startDebugging()
|
||||
{
|
||||
@@ -633,17 +400,12 @@ void MaemoDebugRunControl::stop()
|
||||
bool MaemoDebugRunControl::isRunning() const
|
||||
{
|
||||
return isDeploying()
|
||||
#ifdef USE_SSH_LIB
|
||||
|| (!sshRunner.isNull() && sshRunner->isRunning())
|
||||
#else
|
||||
|| gdbServer.state() != QProcess::NotRunning
|
||||
#endif // USE_SSH_LIB
|
||||
|| debuggerManager->state() != Debugger::DebuggerNotReady;
|
||||
}
|
||||
|
||||
void MaemoDebugRunControl::debuggingFinished()
|
||||
{
|
||||
#ifdef USE_SSH_LIB
|
||||
if (!sshRunner.isNull() && sshRunner->isRunning()) {
|
||||
sshRunner->stop();
|
||||
const QString remoteCall = QString::fromLocal8Bit("kill %1; sleep 1; "
|
||||
@@ -651,18 +413,6 @@ void MaemoDebugRunControl::debuggingFinished()
|
||||
sshStopper.reset(new MaemoSshRunner(devConfig, remoteCall));
|
||||
sshStopper->start();
|
||||
}
|
||||
#else
|
||||
if (gdbServer.state() != QProcess::NotRunning) {
|
||||
stopProcess.kill();
|
||||
const QString remoteCall = QString::fromLocal8Bit("kill %1; sleep 1; "
|
||||
"kill -9 %1; pkill -x -9 gdbserver").arg(inferiorPid);
|
||||
QStringList sshArgs;
|
||||
sshArgs << "-n" << "-l" << devConfig.uname << "-p" << sshPort()
|
||||
<< options() << devConfig.host << remoteCall;
|
||||
stopProcess.start(runConfig->sshCmd(), sshArgs);
|
||||
}
|
||||
qDebug("ssh return code is %d", gdbServer.exitCode());
|
||||
#endif // USE_SSH_LIB
|
||||
emit addToOutputWindow(this, tr("Debugging finished."));
|
||||
emit finished();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user