PrismLauncher/api/logic/tools/BaseProfiler.h

40 lines
927 B
C
Raw Normal View History

#pragma once
2014-02-16 11:52:35 +00:00
#include "BaseExternalTool.h"
#include "QObjectPtr.h"
#include "multimc_logic_export.h"
class BaseInstance;
class SettingsObject;
class LaunchTask;
2014-02-15 17:15:41 +00:00
class QProcess;
class MULTIMC_LOGIC_EXPORT BaseProfiler : public BaseExternalTool
{
2018-07-15 13:51:05 +01:00
Q_OBJECT
public:
2018-07-15 13:51:05 +01:00
explicit BaseProfiler(SettingsObjectPtr settings, InstancePtr instance, QObject *parent = 0);
public
slots:
void beginProfiling(shared_qobject_ptr<LaunchTask> process);
2018-07-15 13:51:05 +01:00
void abortProfiling();
protected:
2018-07-15 13:51:05 +01:00
QProcess *m_profilerProcess;
virtual void beginProfilingImpl(shared_qobject_ptr<LaunchTask> process) = 0;
2018-07-15 13:51:05 +01:00
virtual void abortProfilingImpl();
signals:
2018-07-15 13:51:05 +01:00
void readyToLaunch(const QString &message);
void abortLaunch(const QString &message);
};
class MULTIMC_LOGIC_EXPORT BaseProfilerFactory : public BaseExternalToolFactory
{
public:
2018-07-15 13:51:05 +01:00
virtual BaseProfiler *createProfiler(InstancePtr instance, QObject *parent = 0);
};