2013-05-06 09:10:22 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2013-05-06 09:10:22 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2013-05-06 09:10:22 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "remotelinuxanalyzesupport.h"
|
|
|
|
|
|
|
|
|
|
#include "remotelinuxrunconfiguration.h"
|
|
|
|
|
|
2016-02-24 14:42:52 +01:00
|
|
|
#include <debugger/analyzer/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/kitinformation.h>
|
2016-01-26 15:53:26 +01:00
|
|
|
#include <projectexplorer/runnables.h>
|
2013-05-06 09:10:22 +02:00
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
2015-08-18 15:52:57 +02:00
|
|
|
#include <utils/qtcprocess.h>
|
2013-07-22 16:12:14 +02:00
|
|
|
#include <qmldebug/qmloutputparser.h>
|
2015-08-10 17:43:58 +02:00
|
|
|
#include <qmldebug/qmldebugcommandlinearguments.h>
|
2013-05-06 09:10:22 +02:00
|
|
|
|
|
|
|
|
#include <QPointer>
|
|
|
|
|
|
|
|
|
|
using namespace QSsh;
|
2016-03-02 13:57:37 +01:00
|
|
|
using namespace Debugger;
|
2013-05-06 09:10:22 +02:00
|
|
|
using namespace ProjectExplorer;
|
2016-01-26 15:53:26 +01:00
|
|
|
using namespace Utils;
|
2013-05-06 09:10:22 +02:00
|
|
|
|
|
|
|
|
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),
|
2016-04-19 16:51:30 +02:00
|
|
|
runMode(runMode)
|
2013-05-06 09:10:22 +02:00
|
|
|
{
|
2016-04-19 16:55:09 +02:00
|
|
|
if (runMode != ProjectExplorer::Constants::PERFPROFILER_RUN_MODE)
|
|
|
|
|
return;
|
|
|
|
|
RunConfiguration *runConfiguration = runControl->runConfiguration();
|
|
|
|
|
QTC_ASSERT(runConfiguration, return);
|
|
|
|
|
IRunConfigurationAspect *perfAspect =
|
|
|
|
|
runConfiguration->extraAspect("Analyzer.Perf.Settings");
|
|
|
|
|
QTC_ASSERT(perfAspect, return);
|
|
|
|
|
perfRecordArguments =
|
2016-12-06 17:53:00 +01:00
|
|
|
perfAspect->currentSettings()->property("perfRecordArguments").toStringList()
|
|
|
|
|
.join(' ');
|
2013-05-06 09:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
2013-07-30 14:08:01 +02:00
|
|
|
const QPointer<AnalyzerRunControl> runControl;
|
2016-04-19 16:51:30 +02:00
|
|
|
Core::Id runMode;
|
2016-04-19 16:43:30 +02:00
|
|
|
Utils::Port qmlPort;
|
2016-04-19 16:55:09 +02:00
|
|
|
QString remoteFifo;
|
|
|
|
|
QString perfRecordArguments;
|
2013-07-22 16:12:14 +02:00
|
|
|
|
2017-03-09 14:13:13 +01:00
|
|
|
ApplicationLauncher outputGatherer;
|
2013-07-22 16:12:14 +02:00
|
|
|
QmlDebug::QmlOutputParser outputParser;
|
2013-05-06 09:10:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
|
|
|
|
|
using namespace Internal;
|
|
|
|
|
|
2016-01-26 15:53:26 +01:00
|
|
|
RemoteLinuxAnalyzeSupport::RemoteLinuxAnalyzeSupport(RunConfiguration *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))
|
|
|
|
|
{
|
2016-01-06 11:40:52 +01:00
|
|
|
connect(d->runControl.data(), &AnalyzerRunControl::starting,
|
|
|
|
|
this, &RemoteLinuxAnalyzeSupport::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)
|
2016-05-13 11:27:51 +02:00
|
|
|
d->runControl->appendMessage(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);
|
|
|
|
|
|
2016-04-19 16:51:30 +02:00
|
|
|
if (d->runMode == ProjectExplorer::Constants::QML_PROFILER_RUN_MODE) {
|
|
|
|
|
showMessage(tr("Checking available ports...") + QLatin1Char('\n'),
|
|
|
|
|
Utils::NormalMessageFormat);
|
|
|
|
|
startPortsGathering();
|
2016-04-19 16:55:09 +02:00
|
|
|
} else if (d->runMode == ProjectExplorer::Constants::PERFPROFILER_RUN_MODE) {
|
2016-08-24 14:08:30 +02:00
|
|
|
showMessage(tr("Creating remote socket...") + QLatin1Char('\n'),
|
2016-04-19 16:55:09 +02:00
|
|
|
Utils::NormalMessageFormat);
|
|
|
|
|
createRemoteFifo();
|
2016-04-19 16:51:30 +02:00
|
|
|
}
|
2013-05-06 09:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RemoteLinuxAnalyzeSupport::startExecution()
|
|
|
|
|
{
|
2016-04-19 16:51:30 +02:00
|
|
|
QTC_ASSERT(state() == GatheringResources, return);
|
2013-07-18 16:02:28 +02:00
|
|
|
|
2016-04-20 12:03:58 +02:00
|
|
|
if (d->runMode == ProjectExplorer::Constants::QML_PROFILER_RUN_MODE) {
|
|
|
|
|
d->qmlPort = findPort();
|
|
|
|
|
if (!d->qmlPort.isValid()) {
|
|
|
|
|
handleAdapterSetupFailed(tr("Not enough free ports on device for profiling."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
} else if (d->runMode == ProjectExplorer::Constants::PERFPROFILER_RUN_MODE) {
|
|
|
|
|
d->remoteFifo = fifo();
|
|
|
|
|
if (d->remoteFifo.isEmpty()) {
|
|
|
|
|
handleAdapterSetupFailed(tr("FIFO for profiling data could not be created."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-05-06 09:10:22 +02:00
|
|
|
|
|
|
|
|
setState(StartingRunner);
|
|
|
|
|
|
2017-03-09 14:13:13 +01:00
|
|
|
ApplicationLauncher *runner = appRunner();
|
|
|
|
|
connect(runner, &ApplicationLauncher::remoteStderr,
|
2015-01-30 11:02:24 +01:00
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleRemoteErrorOutput);
|
2017-03-09 14:13:13 +01:00
|
|
|
connect(runner, &ApplicationLauncher::remoteStdout,
|
2015-01-30 11:02:24 +01:00
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleRemoteOutput);
|
2017-03-09 14:13:13 +01:00
|
|
|
connect(runner, &ApplicationLauncher::remoteProcessStarted,
|
2015-01-30 11:02:24 +01:00
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleRemoteProcessStarted);
|
2017-03-09 14:13:13 +01:00
|
|
|
connect(runner, &ApplicationLauncher::finished,
|
2015-01-30 11:02:24 +01:00
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleAppRunnerFinished);
|
2017-03-09 14:13:13 +01:00
|
|
|
connect(runner, &ApplicationLauncher::reportProgress,
|
2015-01-30 11:02:24 +01:00
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleProgressReport);
|
2017-03-09 14:13:13 +01:00
|
|
|
connect(runner, &ApplicationLauncher::reportError,
|
2015-01-30 11:02:24 +01:00
|
|
|
this, &RemoteLinuxAnalyzeSupport::handleAppRunnerError);
|
2013-07-18 16:02:28 +02:00
|
|
|
|
2016-01-27 18:25:13 +01:00
|
|
|
auto r = runnable();
|
2016-04-19 16:51:30 +02:00
|
|
|
|
|
|
|
|
if (d->runMode == ProjectExplorer::Constants::QML_PROFILER_RUN_MODE) {
|
|
|
|
|
if (!r.commandLineArguments.isEmpty())
|
|
|
|
|
r.commandLineArguments.append(QLatin1Char(' '));
|
|
|
|
|
r.commandLineArguments += QmlDebug::qmlDebugTcpArguments(QmlDebug::QmlProfilerServices,
|
|
|
|
|
d->qmlPort);
|
2016-04-19 16:55:09 +02:00
|
|
|
} else if (d->runMode == ProjectExplorer::Constants::PERFPROFILER_RUN_MODE) {
|
|
|
|
|
r.commandLineArguments = QLatin1String("-c 'perf record -o - ") + d->perfRecordArguments
|
|
|
|
|
+ QLatin1String(" -- ") + r.executable + QLatin1String(" ")
|
|
|
|
|
+ r.commandLineArguments + QLatin1String(" > ") + d->remoteFifo
|
|
|
|
|
+ QLatin1String("'");
|
|
|
|
|
r.executable = QLatin1String("sh");
|
|
|
|
|
|
|
|
|
|
connect(&d->outputGatherer, SIGNAL(remoteStdout(QByteArray)),
|
|
|
|
|
d->runControl, SIGNAL(analyzePerfOutput(QByteArray)));
|
|
|
|
|
connect(&d->outputGatherer, SIGNAL(finished(bool)),
|
|
|
|
|
d->runControl, SIGNAL(perfFinished()));
|
|
|
|
|
|
|
|
|
|
StandardRunnable outputRunner;
|
|
|
|
|
outputRunner.executable = QLatin1String("sh");
|
|
|
|
|
outputRunner.commandLineArguments =
|
|
|
|
|
QString::fromLatin1("-c 'cat %1 && rm -r `dirname %1`'").arg(d->remoteFifo);
|
2017-03-01 18:31:33 +01:00
|
|
|
d->outputGatherer.start(outputRunner, device());
|
2016-04-19 16:55:09 +02:00
|
|
|
remoteIsRunning();
|
2016-04-19 16:51:30 +02:00
|
|
|
}
|
2017-03-01 18:31:33 +01:00
|
|
|
runner->start(r, device());
|
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)
|
|
|
|
|
{
|
2016-04-19 16:51:30 +02:00
|
|
|
QTC_ASSERT(state() != GatheringResources, return);
|
2013-05-06 09:10:22 +02:00
|
|
|
|
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(state() == StartingRunner, return);
|
|
|
|
|
|
|
|
|
|
handleAdapterSetupDone();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace RemoteLinux
|