blob: f23e59666e10b13d2ec0e7b31a29210a4730120a (
plain)
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "qmlprofilerstatemanager.h"
#include <projectexplorer/runcontrol.h>
#include <utils/outputformat.h>
#include <utils/port.h>
#include <qmldebug/qmloutputparser.h>
namespace QmlProfiler::Internal {
class QmlProfilerRunner : public ProjectExplorer::RunWorker
{
Q_OBJECT
public:
QmlProfilerRunner(ProjectExplorer::RunControl *runControl);
~QmlProfilerRunner() override;
void setServerUrl(const QUrl &serverUrl);
QUrl serverUrl() const;
void registerProfilerStateManager( QmlProfilerStateManager *profilerState );
void cancelProcess();
void notifyRemoteFinished();
private:
void start() override;
void stop() override;
void profilerStateChanged();
class QmlProfilerRunnerPrivate;
QmlProfilerRunnerPrivate *d;
};
class LocalQmlProfilerSupport : public ProjectExplorer::SimpleTargetRunner
{
Q_OBJECT
public:
LocalQmlProfilerSupport(ProjectExplorer::RunControl *runControl);
LocalQmlProfilerSupport(ProjectExplorer::RunControl *runControl,
const QUrl &serverUrl);
};
// The bits plugged in in remote setups.
class QmlProfilerRunWorkerFactory final : public ProjectExplorer::RunWorkerFactory
{
public:
QmlProfilerRunWorkerFactory();
};
// The full local profiler.
class LocalQmlProfilerRunWorkerFactory final : public ProjectExplorer::RunWorkerFactory
{
public:
LocalQmlProfilerRunWorkerFactory();
};
} // QmlProfiler::Internal
|