2013-05-06 09:10:22 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2013-05-06 09:10:22 +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-05-06 09:10:22 +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-05-06 09:10:22 +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-05-06 09:10:22 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "remotelinuxanalyzesupport.h"
|
|
|
|
|
|
|
|
|
|
#include "remotelinuxrunconfiguration.h"
|
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
#include <analyzerbase/analyzerruncontrol.h>
|
2013-05-06 09:10:22 +02:00
|
|
|
|
|
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
|
|
|
|
#include <projectexplorer/project.h>
|
|
|
|
|
#include <projectexplorer/target.h>
|
|
|
|
|
#include <projectexplorer/toolchain.h>
|
|
|
|
|
#include <projectexplorer/devicesupport/deviceapplicationrunner.h>
|
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
2013-07-22 16:12:14 +02:00
|
|
|
#include <qmldebug/qmloutputparser.h>
|
2013-05-06 09:10:22 +02:00
|
|
|
|
|
|
|
|
#include <QPointer>
|
|
|
|
|
|
|
|
|
|
using namespace QSsh;
|
|
|
|
|
using namespace Analyzer;
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
namespace RemoteLinux {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class RemoteLinuxAnalyzeSupportPrivate
|
|
|
|
|
{
|
|
|
|
|
public:
|
2015-06-29 10:36:29 +03:00
|
|
|
RemoteLinuxAnalyzeSupportPrivate(AnalyzerRunControl *rc, Core::Id runMode)
|
2013-07-30 14:08:01 +02:00
|
|
|
: runControl(rc),
|
2015-06-29 10:36:29 +03:00
|
|
|
qmlProfiling(runMode == ProjectExplorer::Constants::QML_PROFILER_RUN_MODE),
|
2013-05-06 09:10:22 +02:00
|
|
|
qmlPort(-1)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
const QPointer<AnalyzerRunControl> runControl;
|
2013-05-06 09:10:22 +02:00
|
|
|
bool qmlProfiling;
|
|
|
|
|
int qmlPort;
|
2013-07-22 16:12:14 +02:00
|
|
|
|
|
|
|
|
QmlDebug::QmlOutputParser outputParser;
|
2013-05-06 09:10:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
|
|
|
|
|
using namespace Internal;
|
|
|
|
|
|
2015-04-21 16:26:53 +02:00
|
|
|
AnalyzerStartParameters RemoteLinuxAnalyzeSupport::startParameters(const RunConfiguration *runConfig,
|
2015-06-29 10:36:29 +03:00
|
|
|
Core::Id runMode)
|
2013-05-06 09:10:22 +02:00
|
|
|
{
|
|
|
|
|
AnalyzerStartParameters params;
|
2013-07-30 14:08:01 +02:00
|
|
|
params.runMode = runMode;
|
2013-05-06 09:10:22 +02:00
|
|
|
params.connParams = DeviceKitInformation::device(runConfig->target()->kit())->sshParameters();
|
|
|
|
|
params.displayName = runConfig->displayName();
|
|
|
|
|
params.sysroot = SysRootKitInformation::sysRoot(runConfig->target()->kit()).toString();
|
|
|
|
|
params.analyzerHost = params.connParams.host;
|
|
|
|
|
|
|
|
|
|
return params;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-08 11:07:42 +02:00
|
|
|
RemoteLinuxAnalyzeSupport::RemoteLinuxAnalyzeSupport(AbstractRemoteLinuxRunConfiguration *runConfig,
|
2015-06-29 10:36:29 +03:00
|
|
|
AnalyzerRunControl *engine, Core::Id runMode)
|
2013-05-07 14:35:02 +02:00
|
|
|
: AbstractRemoteLinuxRunSupport(runConfig, engine),
|
2013-05-06 09:10:22 +02:00
|
|
|
d(new RemoteLinuxAnalyzeSupportPrivate(engine, runMode))
|
|
|
|
|
{
|
2013-07-30 14:08:01 +02:00
|
|
|
connect(d->runControl, SIGNAL(starting(const Analyzer::AnalyzerRunControl*)),
|
2013-05-06 09:10:22 +02:00
|
|
|
SLOT(handleRemoteSetupRequested()));
|
2015-01-30 11:02:24 +01:00
|
|
|
connect(&d->outputParser, &QmlDebug::QmlOutputParser::waitingForConnectionOnPort,
|
|
|
|
|
this, &RemoteLinuxAnalyzeSupport::remoteIsRunning);
|
2015-04-21 16:26:53 +02:00
|
|
|
connect(engine, &RunControl::finished,
|
|
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleProfilingFinished);
|
2013-05-06 09:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RemoteLinuxAnalyzeSupport::~RemoteLinuxAnalyzeSupport()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::showMessage(const QString &msg, Utils::OutputFormat format)
|
|
|
|
|
{
|
2013-07-30 14:08:01 +02:00
|
|
|
if (state() != Inactive && d->runControl)
|
|
|
|
|
d->runControl->logApplicationMessage(msg, format);
|
2013-07-22 16:12:14 +02:00
|
|
|
d->outputParser.processOutput(msg);
|
2013-05-06 09:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::handleRemoteSetupRequested()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(state() == Inactive, return);
|
|
|
|
|
|
2013-10-17 13:48:04 +02:00
|
|
|
showMessage(tr("Checking available ports...") + QLatin1Char('\n'), Utils::NormalMessageFormat);
|
2013-05-07 14:35:02 +02:00
|
|
|
AbstractRemoteLinuxRunSupport::handleRemoteSetupRequested();
|
2013-05-06 09:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::startExecution()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(state() == GatheringPorts, return);
|
|
|
|
|
|
2013-07-18 16:02:28 +02:00
|
|
|
// Currently we support only QML profiling
|
|
|
|
|
QTC_ASSERT(d->qmlProfiling, return);
|
|
|
|
|
|
|
|
|
|
if (!setPort(d->qmlPort))
|
|
|
|
|
return;
|
2013-05-06 09:10:22 +02:00
|
|
|
|
|
|
|
|
setState(StartingRunner);
|
|
|
|
|
|
|
|
|
|
DeviceApplicationRunner *runner = appRunner();
|
2015-01-30 11:02:24 +01:00
|
|
|
connect(runner, &DeviceApplicationRunner::remoteStderr,
|
|
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleRemoteErrorOutput);
|
|
|
|
|
connect(runner, &DeviceApplicationRunner::remoteStdout,
|
|
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleRemoteOutput);
|
|
|
|
|
connect(runner, &DeviceApplicationRunner::remoteProcessStarted,
|
|
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleRemoteProcessStarted);
|
|
|
|
|
connect(runner, &DeviceApplicationRunner::finished,
|
|
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleAppRunnerFinished);
|
|
|
|
|
connect(runner, &DeviceApplicationRunner::reportProgress,
|
|
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleProgressReport);
|
|
|
|
|
connect(runner, &DeviceApplicationRunner::reportError,
|
|
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleAppRunnerError);
|
2013-07-18 16:02:28 +02:00
|
|
|
|
2013-08-08 14:05:11 +02:00
|
|
|
const QStringList args = arguments()
|
2013-11-05 14:45:35 +01:00
|
|
|
<< QString::fromLatin1("-qmljsdebugger=port:%1,block").arg(d->qmlPort);
|
2013-08-08 14:05:11 +02:00
|
|
|
runner->setWorkingDirectory(workingDirectory());
|
|
|
|
|
runner->setEnvironment(environment());
|
|
|
|
|
runner->start(device(), remoteFilePath(), args);
|
2013-05-06 09:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::handleAppRunnerError(const QString &error)
|
|
|
|
|
{
|
|
|
|
|
if (state() == Running)
|
|
|
|
|
showMessage(error, Utils::ErrorMessageFormat);
|
|
|
|
|
else if (state() != Inactive)
|
|
|
|
|
handleAdapterSetupFailed(error);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::handleAppRunnerFinished(bool success)
|
|
|
|
|
{
|
2013-07-19 10:15:47 +02:00
|
|
|
// reset needs to be called first to ensure that the correct state is set.
|
|
|
|
|
reset();
|
2013-05-06 09:10:22 +02:00
|
|
|
if (!success)
|
|
|
|
|
showMessage(tr("Failure running remote process."), Utils::NormalMessageFormat);
|
2014-03-18 13:00:21 +01:00
|
|
|
d->runControl->notifyRemoteFinished();
|
2013-05-06 09:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::handleProfilingFinished()
|
|
|
|
|
{
|
|
|
|
|
setFinished();
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-22 16:12:14 +02:00
|
|
|
void RemoteLinuxAnalyzeSupport::remoteIsRunning()
|
|
|
|
|
{
|
2013-07-30 14:08:01 +02:00
|
|
|
d->runControl->notifyRemoteSetupDone(d->qmlPort);
|
2013-07-22 16:12:14 +02:00
|
|
|
}
|
|
|
|
|
|
2013-05-06 09:10:22 +02:00
|
|
|
void RemoteLinuxAnalyzeSupport::handleRemoteOutput(const QByteArray &output)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(state() == Inactive || state() == Running, return);
|
|
|
|
|
|
|
|
|
|
showMessage(QString::fromUtf8(output), Utils::StdOutFormat);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::handleRemoteErrorOutput(const QByteArray &output)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(state() != GatheringPorts, return);
|
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
if (!d->runControl)
|
2013-05-06 09:10:22 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
showMessage(QString::fromUtf8(output), Utils::StdErrFormat);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::handleProgressReport(const QString &progressOutput)
|
|
|
|
|
{
|
|
|
|
|
showMessage(progressOutput + QLatin1Char('\n'), Utils::NormalMessageFormat);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::handleAdapterSetupFailed(const QString &error)
|
|
|
|
|
{
|
2013-05-07 14:35:02 +02:00
|
|
|
AbstractRemoteLinuxRunSupport::handleAdapterSetupFailed(error);
|
2013-05-06 09:10:22 +02:00
|
|
|
showMessage(tr("Initial setup failed: %1").arg(error), Utils::NormalMessageFormat);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::handleRemoteProcessStarted()
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(d->qmlProfiling, return);
|
|
|
|
|
QTC_ASSERT(state() == StartingRunner, return);
|
|
|
|
|
|
|
|
|
|
handleAdapterSetupDone();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace RemoteLinux
|