// 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 #include #include #include #include namespace QmlProfiler { namespace 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); }; void setupQmlProfilerRunning(); } // QmlProfiler::Internal class SimpleQmlProfilerRunnerFactory final : public ProjectExplorer::RunWorkerFactory { public: explicit SimpleQmlProfilerRunnerFactory(const QList &runConfigs, const QList &extraRunModes = {}) { cloneProduct(ProjectExplorer::Constants::QML_PROFILER_RUN_FACTORY); addSupportedRunMode(ProjectExplorer::Constants::QML_PROFILER_RUN_MODE); for (const Utils::Id &id : extraRunModes) addSupportedRunMode(id); setSupportedRunConfigs(runConfigs); } }; } // QmlProfiler