2014-02-15 13:19:35 +00:00
|
|
|
#include "JProfiler.h"
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "BaseInstance.h"
|
2023-08-14 17:16:53 +01:00
|
|
|
#include "launch/LaunchTask.h"
|
|
|
|
#include "settings/SettingsObject.h"
|
2014-02-15 13:19:35 +00:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
class JProfiler : public BaseProfiler {
|
2015-04-06 19:52:59 +01:00
|
|
|
Q_OBJECT
|
2023-08-14 17:16:53 +01:00
|
|
|
public:
|
|
|
|
JProfiler(SettingsObjectPtr settings, InstancePtr instance, QObject* parent = 0);
|
2015-04-06 19:52:59 +01:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
private slots:
|
2015-04-06 19:52:59 +01:00
|
|
|
void profilerStarted();
|
|
|
|
void profilerFinished(int exit, QProcess::ExitStatus status);
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
protected:
|
2019-04-07 22:59:04 +01:00
|
|
|
void beginProfilingImpl(shared_qobject_ptr<LaunchTask> process);
|
2015-04-06 19:52:59 +01:00
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
private:
|
2015-04-06 19:52:59 +01:00
|
|
|
int listeningPort = 0;
|
|
|
|
};
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
JProfiler::JProfiler(SettingsObjectPtr settings, InstancePtr instance, QObject* parent) : BaseProfiler(settings, instance, parent) {}
|
2014-02-15 13:19:35 +00:00
|
|
|
|
2015-04-06 19:52:59 +01:00
|
|
|
void JProfiler::profilerStarted()
|
|
|
|
{
|
|
|
|
emit readyToLaunch(tr("Listening on port: %1").arg(listeningPort));
|
|
|
|
}
|
|
|
|
|
2023-07-01 07:51:15 +01:00
|
|
|
void JProfiler::profilerFinished([[maybe_unused]] int exit, QProcess::ExitStatus status)
|
2015-04-06 19:52:59 +01:00
|
|
|
{
|
2023-08-14 17:16:53 +01:00
|
|
|
if (status == QProcess::CrashExit) {
|
2015-04-06 19:52:59 +01:00
|
|
|
emit abortLaunch(tr("Profiler aborted"));
|
|
|
|
}
|
2023-08-14 17:16:53 +01:00
|
|
|
if (m_profilerProcess) {
|
2015-04-06 19:52:59 +01:00
|
|
|
m_profilerProcess->deleteLater();
|
|
|
|
m_profilerProcess = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-07 22:59:04 +01:00
|
|
|
void JProfiler::beginProfilingImpl(shared_qobject_ptr<LaunchTask> process)
|
2014-02-15 13:19:35 +00:00
|
|
|
{
|
2015-04-06 19:52:59 +01:00
|
|
|
listeningPort = globalSettings->get("JProfilerPort").toInt();
|
2023-08-14 17:16:53 +01:00
|
|
|
QProcess* profiler = new QProcess(this);
|
|
|
|
QStringList profilerArgs = { "-d", QString::number(process->pid()), "--gui", "-p", QString::number(listeningPort) };
|
2015-04-06 19:52:59 +01:00
|
|
|
auto basePath = globalSettings->get("JProfilerPath").toString();
|
|
|
|
|
2014-11-02 19:16:29 +00:00
|
|
|
#ifdef Q_OS_WIN
|
2015-04-06 19:52:59 +01:00
|
|
|
QString profilerProgram = QDir(basePath).absoluteFilePath("bin/jpenable.exe");
|
2014-11-02 19:16:29 +00:00
|
|
|
#else
|
2015-04-06 19:52:59 +01:00
|
|
|
QString profilerProgram = QDir(basePath).absoluteFilePath("bin/jpenable");
|
2014-11-02 19:16:29 +00:00
|
|
|
#endif
|
2015-04-06 19:52:59 +01:00
|
|
|
|
|
|
|
profiler->setArguments(profilerArgs);
|
|
|
|
profiler->setProgram(profilerProgram);
|
|
|
|
|
2023-04-18 01:51:34 +01:00
|
|
|
connect(profiler, &QProcess::started, this, &JProfiler::profilerStarted);
|
|
|
|
connect(profiler, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished), this, &JProfiler::profilerFinished);
|
2015-04-06 19:52:59 +01:00
|
|
|
|
2014-02-16 08:30:38 +00:00
|
|
|
m_profilerProcess = profiler;
|
2015-04-06 19:52:59 +01:00
|
|
|
profiler->start();
|
2014-02-15 13:19:35 +00:00
|
|
|
}
|
|
|
|
|
2015-02-09 00:51:14 +00:00
|
|
|
void JProfilerFactory::registerSettings(SettingsObjectPtr settings)
|
2014-02-15 13:19:35 +00:00
|
|
|
{
|
|
|
|
settings->registerSetting("JProfilerPath");
|
|
|
|
settings->registerSetting("JProfilerPort", 42042);
|
2015-02-09 00:51:14 +00:00
|
|
|
globalSettings = settings;
|
2014-02-15 13:19:35 +00:00
|
|
|
}
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
BaseExternalTool* JProfilerFactory::createTool(InstancePtr instance, QObject* parent)
|
2014-02-15 13:19:35 +00:00
|
|
|
{
|
2015-02-09 00:51:14 +00:00
|
|
|
return new JProfiler(globalSettings, instance, parent);
|
2014-02-15 13:19:35 +00:00
|
|
|
}
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
bool JProfilerFactory::check(QString* error)
|
2014-02-15 21:26:44 +00:00
|
|
|
{
|
2015-02-09 00:51:14 +00:00
|
|
|
return check(globalSettings->get("JProfilerPath").toString(), error);
|
2014-02-15 21:26:44 +00:00
|
|
|
}
|
|
|
|
|
2023-08-14 17:16:53 +01:00
|
|
|
bool JProfilerFactory::check(const QString& path, QString* error)
|
2014-02-15 13:19:35 +00:00
|
|
|
{
|
2023-08-14 17:16:53 +01:00
|
|
|
if (path.isEmpty()) {
|
2014-02-15 21:26:44 +00:00
|
|
|
*error = QObject::tr("Empty path");
|
|
|
|
return false;
|
|
|
|
}
|
2014-02-15 13:19:35 +00:00
|
|
|
QDir dir(path);
|
2023-08-14 17:16:53 +01:00
|
|
|
if (!dir.exists()) {
|
2014-02-15 13:19:35 +00:00
|
|
|
*error = QObject::tr("Path does not exist");
|
|
|
|
return false;
|
|
|
|
}
|
2023-08-14 17:16:53 +01:00
|
|
|
if (!dir.exists("bin") || !(dir.exists("bin/jprofiler") || dir.exists("bin/jprofiler.exe")) || !dir.exists("bin/agent.jar")) {
|
2014-02-15 13:19:35 +00:00
|
|
|
*error = QObject::tr("Invalid JProfiler install");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2015-04-06 19:52:59 +01:00
|
|
|
|
|
|
|
#include "JProfiler.moc"
|