mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-02 03:16:58 +03:00
Profiler support. Currently JProfiler and JVisualVM are implemented.
This commit is contained in:
parent
5cf599673d
commit
efa8e26a3f
16 changed files with 505 additions and 17 deletions
46
logic/profiler/JVisualVM.cpp
Normal file
46
logic/profiler/JVisualVM.cpp
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
#include "JVisualVM.h"
|
||||
|
||||
#include <QDir>
|
||||
#include <QStandardPaths>
|
||||
|
||||
#include "settingsobject.h"
|
||||
#include "logic/MinecraftProcess.h"
|
||||
#include "logic/OneSixInstance.h"
|
||||
|
||||
JVisualVM::JVisualVM(OneSixInstance *instance, QObject *parent) : BaseProfiler(instance, parent)
|
||||
{
|
||||
}
|
||||
|
||||
void JVisualVM::beginProfilingImpl(MinecraftProcess *process)
|
||||
{
|
||||
QProcess *profiler = new QProcess(this);
|
||||
profiler->setArguments(QStringList() << "--jdkhome"
|
||||
<< m_instance->settings().get("JavaPath").toString()
|
||||
<< "--openpid" << QString::number(process->pid()));
|
||||
profiler->setProgram("jvisualvm");
|
||||
connect(profiler, &QProcess::started, [this]()
|
||||
{ emit readyToLaunch(tr("JVisualVM started")); });
|
||||
connect(profiler, SIGNAL(finished(int)), profiler, SLOT(deleteLater()));
|
||||
profiler->start();
|
||||
}
|
||||
|
||||
void JVisualVMFactory::registerSettings(SettingsObject *settings)
|
||||
{
|
||||
settings->registerSetting("JVisualVMPath");
|
||||
}
|
||||
|
||||
BaseProfiler *JVisualVMFactory::createProfiler(OneSixInstance *instance, QObject *parent)
|
||||
{
|
||||
return new JVisualVM(instance, parent);
|
||||
}
|
||||
|
||||
bool JVisualVMFactory::check(const QString &path, QString *error)
|
||||
{
|
||||
QString resolved = QStandardPaths::findExecutable(path);
|
||||
if (resolved.isEmpty() && !QDir::isAbsolutePath(path))
|
||||
{
|
||||
*error = QObject::tr("Invalid path to JVisualVM");
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue