forked from qt-creator/qt-creator
Provide a QProcess-like abstraction that can be used
to implement processes running locally or on a remote
device. Objects of a concrete class implementing the functionality
are created by IDevice objects.
Current implementations are:
- Local execution (QProcess-based), provided via the DesktopDevice.
- Remote execution via SSH.
- A specialized case of the former for remote Linux systems (provided by
LinuxDevice).
The latter is already being used in a number of places. As a result, lots of
code dealing with details such as setting the remote environment could be
moved to a central location. These things are no longer the concern of whoever
is wishing to run a remote process.
Change-Id: I919260ee6e77a020ca47226a4a534e7b8398106f
Reviewed-by: hjk <hjk121@nokiamail.com>
164 lines
5.8 KiB
C++
164 lines
5.8 KiB
C++
/**************************************************************************
|
|
**
|
|
** Copyright (C) 2011 - 2013 Research In Motion
|
|
**
|
|
** Contact: Research In Motion (blackberry-qt@qnx.com)
|
|
** Contact: KDAB (info@kdab.com)
|
|
**
|
|
** 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://qt.digia.com/licensing. For further information
|
|
** use the contact form at http://qt.digia.com/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 as published by the Free Software
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
** packaging of this file. Please review the following information to
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
** will be met: 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 "qnxdebugsupport.h"
|
|
#include "qnxconstants.h"
|
|
#include "qnxrunconfiguration.h"
|
|
|
|
#include <debugger/debuggerengine.h>
|
|
#include <debugger/debuggerrunconfigurationaspect.h>
|
|
#include <debugger/debuggerstartparameters.h>
|
|
#include <projectexplorer/devicesupport/deviceapplicationrunner.h>
|
|
#include <projectexplorer/devicesupport/deviceusedportsgatherer.h>
|
|
#include <projectexplorer/kitinformation.h>
|
|
#include <projectexplorer/target.h>
|
|
#include <utils/qtcassert.h>
|
|
#include <utils/qtcprocess.h>
|
|
|
|
using namespace ProjectExplorer;
|
|
using namespace RemoteLinux;
|
|
|
|
using namespace Qnx;
|
|
using namespace Qnx::Internal;
|
|
|
|
QnxDebugSupport::QnxDebugSupport(QnxRunConfiguration *runConfig, Debugger::DebuggerEngine *engine)
|
|
: QnxAbstractRunSupport(runConfig, engine)
|
|
, m_engine(engine)
|
|
, m_pdebugPort(-1)
|
|
, m_qmlPort(-1)
|
|
, m_useCppDebugger(runConfig->extraAspect<Debugger::DebuggerRunConfigurationAspect>()->useCppDebugger())
|
|
, m_useQmlDebugger(runConfig->extraAspect<Debugger::DebuggerRunConfigurationAspect>()->useQmlDebugger())
|
|
{
|
|
const DeviceApplicationRunner *runner = appRunner();
|
|
connect(runner, SIGNAL(reportError(QString)), SLOT(handleError(QString)));
|
|
connect(runner, SIGNAL(remoteProcessStarted()), SLOT(handleRemoteProcessStarted()));
|
|
connect(runner, SIGNAL(finished(bool)), SLOT(handleRemoteProcessFinished(bool)));
|
|
connect(runner, SIGNAL(reportProgress(QString)), SLOT(handleProgressReport(QString)));
|
|
connect(runner, SIGNAL(remoteStdout(QByteArray)), SLOT(handleRemoteOutput(QByteArray)));
|
|
connect(runner, SIGNAL(remoteStderr(QByteArray)), SLOT(handleRemoteOutput(QByteArray)));
|
|
|
|
connect(m_engine, SIGNAL(requestRemoteSetup()), this, SLOT(handleAdapterSetupRequested()));
|
|
}
|
|
|
|
void QnxDebugSupport::handleAdapterSetupRequested()
|
|
{
|
|
QTC_ASSERT(state() == Inactive, return);
|
|
|
|
if (m_engine)
|
|
m_engine->showMessage(tr("Preparing remote side...\n"), Debugger::AppStuff);
|
|
QnxAbstractRunSupport::handleAdapterSetupRequested();
|
|
}
|
|
|
|
void QnxDebugSupport::startExecution()
|
|
{
|
|
if (state() == Inactive)
|
|
return;
|
|
|
|
if (m_useCppDebugger && !setPort(m_pdebugPort))
|
|
return;
|
|
if (m_useQmlDebugger && !setPort(m_qmlPort))
|
|
return;
|
|
|
|
setState(StartingRemoteProcess);
|
|
|
|
if (m_useQmlDebugger)
|
|
m_engine->startParameters().processArgs += QString::fromLocal8Bit(" -qmljsdebugger=port:%1,block").arg(m_qmlPort);
|
|
|
|
QStringList arguments;
|
|
if (m_useCppDebugger)
|
|
arguments << QString::number(m_pdebugPort);
|
|
else if (m_useQmlDebugger && !m_useCppDebugger)
|
|
arguments = Utils::QtcProcess::splitArgs(m_engine->startParameters().processArgs);
|
|
appRunner()->setEnvironment(environment());
|
|
appRunner()->setWorkingDirectory(workingDirectory());
|
|
appRunner()->start(device(), executable(), arguments);
|
|
}
|
|
|
|
void QnxDebugSupport::handleRemoteProcessStarted()
|
|
{
|
|
QnxAbstractRunSupport::handleRemoteProcessStarted();
|
|
if (m_engine)
|
|
m_engine->notifyEngineRemoteSetupDone(m_pdebugPort, m_qmlPort);
|
|
}
|
|
|
|
void QnxDebugSupport::handleRemoteProcessFinished(bool success)
|
|
{
|
|
if (m_engine || state() == Inactive)
|
|
return;
|
|
|
|
if (state() == Running) {
|
|
if (!success)
|
|
m_engine->notifyInferiorIll();
|
|
|
|
} else {
|
|
const QString errorMsg = tr("The %1 process closed unexpectedly.").arg(executable());
|
|
m_engine->notifyEngineRemoteSetupFailed(errorMsg);
|
|
}
|
|
}
|
|
|
|
void QnxDebugSupport::handleDebuggingFinished()
|
|
{
|
|
setFinished();
|
|
}
|
|
|
|
QString QnxDebugSupport::executable() const
|
|
{
|
|
return m_useCppDebugger? QLatin1String(Constants::QNX_DEBUG_EXECUTABLE) : QnxAbstractRunSupport::executable();
|
|
}
|
|
|
|
void QnxDebugSupport::handleProgressReport(const QString &progressOutput)
|
|
{
|
|
if (m_engine)
|
|
m_engine->showMessage(progressOutput + QLatin1Char('\n'), Debugger::AppStuff);
|
|
}
|
|
|
|
void QnxDebugSupport::handleRemoteOutput(const QByteArray &output)
|
|
{
|
|
QTC_ASSERT(state() == Inactive || state() == Running, return);
|
|
|
|
if (m_engine)
|
|
m_engine->showMessage(QString::fromUtf8(output), Debugger::AppOutput);
|
|
}
|
|
|
|
void QnxDebugSupport::handleError(const QString &error)
|
|
{
|
|
if (state() == Running) {
|
|
if (m_engine) {
|
|
m_engine->showMessage(error, Debugger::AppError);
|
|
m_engine->notifyInferiorIll();
|
|
}
|
|
} else if (state() != Inactive) {
|
|
setFinished();
|
|
if (m_engine)
|
|
m_engine->notifyEngineRemoteSetupFailed(tr("Initial setup failed: %1").arg(error));
|
|
}
|
|
}
|