1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "qmlprofilerruncontrol.h"
#include "qmlprofilerclientmanager.h"
#include "qmlprofilerstatemanager.h"
#include "qmlprofilertool.h"
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/projectexplorericons.h>
#include <projectexplorer/qmldebugcommandlinearguments.h>
#include <projectexplorer/runcontrol.h>
#include <QtTaskTree/QBarrier>
#include <utils/qtcassert.h>
#include <utils/qtcprocess.h>
#include <utils/url.h>
using namespace ProjectExplorer;
using namespace QtTaskTree;
using namespace Utils;
namespace QmlProfiler::Internal {
Group qmlProfilerRecipe(RunControl *runControl)
{
runControl->setIcon(ProjectExplorer::Icons::ANALYZER_START_SMALL_TOOLBAR);
const auto onSetup = [runControl](QBarrier &barrier) {
QmlProfilerTool::instance()->finalizeRunControl(runControl);
QmlProfilerClientManager *clientManager = QmlProfilerTool::instance()->clientManager();
QObject::connect(clientManager, &QmlProfilerClientManager::connectionFailed,
&barrier, [barrier = &barrier] { barrier->stopWithResult(DoneResult::Error); });
QObject::connect(clientManager, &QmlProfilerClientManager::connectionClosed,
&barrier, &QBarrier::advance);
QObject::connect(runControl, &RunControl::canceled, &barrier, [barrier = &barrier] {
if (QmlProfilerTool::instance() == nullptr) {
barrier->stopWithResult(DoneResult::Error);
return;
}
QmlProfilerStateManager *stateManager = QmlProfilerTool::instance()->stateManager();
if (stateManager) {
if (stateManager->currentState() == QmlProfilerStateManager::AppRunning)
stateManager->setCurrentState(QmlProfilerStateManager::AppStopRequested);
QObject::connect(stateManager, &QmlProfilerStateManager::stateChanged,
barrier, [stateManager, barrier] {
if (stateManager->currentState() == QmlProfilerStateManager::Idle) {
QmlProfilerTool::instance()->handleStop();
barrier->stopWithResult(DoneResult::Error);
}
});
}
});
clientManager->setServer(runControl->qmlChannel());
clientManager->connectToServer();
runControl->reportStarted();
};
const auto onDone = [] {
if (QmlProfilerTool::instance() == nullptr)
return;
QmlProfilerTool::instance()->handleStop();
QmlProfilerStateManager *stateManager = QmlProfilerTool::instance()->stateManager();
if (stateManager && stateManager->currentState() == QmlProfilerStateManager::AppRunning)
stateManager->setCurrentState(QmlProfilerStateManager::AppStopRequested);
};
return { QBarrierTask(onSetup, onDone) };
}
Group localQmlProfilerRecipe(RunControl *runControl)
{
runControl->requestQmlChannel();
const auto modifier = [runControl](Process &process) {
const QUrl serverUrl = runControl->qmlChannel();
QString code;
if (serverUrl.scheme() == Utils::urlSocketScheme())
code = QString("file:%1").arg(serverUrl.path());
else if (serverUrl.scheme() == Utils::urlTcpScheme())
code = QString("port:%1").arg(serverUrl.port());
else
QTC_CHECK(false);
const QString arguments = ProcessArgs::quoteArg(
qmlDebugCommandLineArguments(QmlProfilerServices, code, true));
CommandLine cmd = runControl->commandLine();
cmd.prependArgs(arguments, CommandLine::Raw);
process.setCommand(cmd.toLocal());
};
const ProcessTask processTask = runControl->processTaskWithModifier(modifier,
{.setupCanceler = false});
return {
When (processTask, &Process::started, WorkflowPolicy::StopOnSuccessOrError) >> Do {
qmlProfilerRecipe(runControl)
}
};
}
// Factories
// The bits plugged in in remote setups.
class QmlProfilerRunWorkerFactory final : public RunWorkerFactory
{
public:
QmlProfilerRunWorkerFactory()
{
setId("QmlProfilerRunWorkerFactory");
setRecipeProducer(qmlProfilerRecipe);
addSupportedRunMode(ProjectExplorer::Constants::QML_PROFILER_RUNNER);
}
};
// The full local profiler.
class LocalQmlProfilerRunWorkerFactory final : public RunWorkerFactory
{
public:
LocalQmlProfilerRunWorkerFactory()
{
setId(ProjectExplorer::Constants::QML_PROFILER_RUN_FACTORY);
setRecipeProducer(&localQmlProfilerRecipe);
addSupportedRunMode(ProjectExplorer::Constants::QML_PROFILER_RUN_MODE);
addSupportedDeviceType(ProjectExplorer::Constants::DESKTOP_DEVICE_TYPE);
addSupportForLocalRunConfigs();
}
};
void setupQmlProfilerRunning()
{
static QmlProfilerRunWorkerFactory theQmlProfilerRunWorkerFactory;
static LocalQmlProfilerRunWorkerFactory theLocalQmlProfilerRunWorkerFactory;
}
} // QmlProfiler::Internal
|