/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (C) 2011 - 2012 Research In Motion ** ** Contact: Research In Motion (blackberry-qt@qnx.com) ** Contact: KDAB (info@kdab.com) ** ** ** GNU Lesser General Public License Usage ** ** 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, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** Other Usage ** ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** If you have questions regarding the use of this file, please contact ** Nokia at info@qt.nokia.com. ** **************************************************************************/ #include "qnxdebugsupport.h" #include "qnxconstants.h" #include "qnxrunconfiguration.h" #include #include #include #include #include #include #include using namespace ProjectExplorer; using namespace RemoteLinux; using namespace Qnx; using namespace Qnx::Internal; QnxDebugSupport::QnxDebugSupport(QnxRunConfiguration *runConfig, Debugger::DebuggerEngine *engine) : QObject(engine) , m_executable(QLatin1String(Constants::QNX_DEBUG_EXECUTABLE)) , m_commandPrefix(runConfig->commandPrefix()) , m_arguments(runConfig->arguments()) , m_device(DeviceKitInformation::device(runConfig->target()->kit())) , m_engine(engine) , m_port(-1) , m_state(Inactive) { m_runner = new DeviceApplicationRunner(this); m_portsGatherer = new DeviceUsedPortsGatherer(this); connect(m_portsGatherer, SIGNAL(error(QString)), SLOT(handleError(QString))); connect(m_portsGatherer, SIGNAL(portListReady()), SLOT(handlePortListReady())); connect(m_runner, SIGNAL(reportError(QString)), SLOT(handleError(QString))); connect(m_runner, SIGNAL(remoteProcessStarted()), this, SLOT(handleRemoteProcessStarted())); connect(m_runner, SIGNAL(finished(bool)), SLOT(handleRemoteProcessFinished(bool))); connect(m_runner, SIGNAL(reportProgress(QString)), this, SLOT(handleProgressReport(QString))); connect(m_runner, SIGNAL(remoteStdout(QByteArray)), this, SLOT(handleRemoteOutput(QByteArray))); connect(m_engine, SIGNAL(requestRemoteSetup()), this, SLOT(handleAdapterSetupRequested())); } void QnxDebugSupport::handleAdapterSetupRequested() { QTC_ASSERT(m_state == Inactive, return); m_state = GatheringPorts; if (m_engine) m_engine->showMessage(tr("Preparing remote side...\n"), Debugger::AppStuff); m_portsGatherer->start(m_device); } void QnxDebugSupport::handlePortListReady() { QTC_ASSERT(m_state == GatheringPorts, return); startExecution(); } void QnxDebugSupport::startExecution() { if (m_state == Inactive) return; m_state = StartingRemoteProcess; Utils::PortList portList = m_device->freePorts(); m_port = m_portsGatherer->getNextFreePort(&portList); const QString remoteCommandLine = QString::fromLatin1("%1 %2 %3") .arg(m_commandPrefix, m_executable).arg(m_port); m_runner->start(m_device, remoteCommandLine.toUtf8()); } void QnxDebugSupport::handleRemoteProcessStarted() { if (m_engine) m_engine->notifyEngineRemoteSetupDone(m_port, -1); } void QnxDebugSupport::handleRemoteProcessFinished(bool success) { if (m_engine || m_state == Inactive) return; if (m_state == Debugging) { if (!success) m_engine->notifyInferiorIll(); } else { const QString errorMsg = tr("The %1 process closed unexpectedly.").arg(m_executable); m_engine->notifyEngineRemoteSetupFailed(errorMsg); } } void QnxDebugSupport::handleDebuggingFinished() { setFinished(); } void QnxDebugSupport::setFinished() { m_state = Inactive; m_runner->stop(m_device->processSupport()->killProcessByNameCommandLine(m_executable).toUtf8()); } 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(m_state == Inactive || m_state == Debugging, return); if (m_engine) m_engine->showMessage(QString::fromUtf8(output), Debugger::AppOutput); } void QnxDebugSupport::handleError(const QString &error) { if (m_state == Debugging) { if (m_engine) { m_engine->showMessage(error, Debugger::AppError); m_engine->notifyInferiorIll(); } } else if (m_state != Inactive) { setFinished(); if (m_engine) m_engine->notifyEngineRemoteSetupFailed(tr("Initial setup failed: %1").arg(error)); } }