PrismLauncher/launcher/tools/JVisualVM.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

92 lines
2.6 KiB
C++
Raw Normal View History

#include "JVisualVM.h"
#include <QDir>
#include <QStandardPaths>
2015-02-09 00:51:14 +00:00
#include "BaseInstance.h"
#include "launch/LaunchTask.h"
#include "settings/SettingsObject.h"
class JVisualVM : public BaseProfiler {
2015-04-06 19:52:59 +01:00
Q_OBJECT
public:
JVisualVM(SettingsObjectPtr settings, InstancePtr instance, QObject* parent = 0);
2015-04-06 19:52:59 +01:00
private slots:
2015-04-06 19:52:59 +01:00
void profilerStarted();
void profilerFinished(int exit, QProcess::ExitStatus status);
protected:
void beginProfilingImpl(shared_qobject_ptr<LaunchTask> process);
2015-04-06 19:52:59 +01:00
};
JVisualVM::JVisualVM(SettingsObjectPtr settings, InstancePtr instance, QObject* parent) : BaseProfiler(settings, instance, parent) {}
2015-04-06 19:52:59 +01:00
void JVisualVM::profilerStarted()
{
emit readyToLaunch(tr("JVisualVM started"));
}
void JVisualVM::profilerFinished([[maybe_unused]] int exit, QProcess::ExitStatus status)
2015-04-06 19:52:59 +01:00
{
if (status == QProcess::CrashExit) {
2015-04-06 19:52:59 +01:00
emit abortLaunch(tr("Profiler aborted"));
}
if (m_profilerProcess) {
2015-04-06 19:52:59 +01:00
m_profilerProcess->deleteLater();
m_profilerProcess = 0;
}
}
void JVisualVM::beginProfilingImpl(shared_qobject_ptr<LaunchTask> process)
{
QProcess* profiler = new QProcess(this);
QStringList profilerArgs = { "--openpid", QString::number(process->pid()) };
2015-04-06 19:52:59 +01:00
auto programPath = globalSettings->get("JVisualVMPath").toString();
profiler->setArguments(profilerArgs);
profiler->setProgram(programPath);
connect(profiler, &QProcess::started, this, &JVisualVM::profilerStarted);
connect(profiler, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished), this, &JVisualVM::profilerFinished);
2015-04-06 19:52:59 +01:00
profiler->start();
m_profilerProcess = profiler;
}
2015-02-09 00:51:14 +00:00
void JVisualVMFactory::registerSettings(SettingsObjectPtr settings)
{
2014-02-16 11:00:38 +00:00
QString defaultValue = QStandardPaths::findExecutable("jvisualvm");
if (defaultValue.isNull()) {
2014-02-16 11:00:38 +00:00
defaultValue = QStandardPaths::findExecutable("visualvm");
}
settings->registerSetting("JVisualVMPath", defaultValue);
2015-02-09 00:51:14 +00:00
globalSettings = settings;
}
BaseExternalTool* JVisualVMFactory::createTool(InstancePtr instance, QObject* parent)
{
2015-02-09 00:51:14 +00:00
return new JVisualVM(globalSettings, instance, parent);
}
bool JVisualVMFactory::check(QString* error)
{
2015-02-09 00:51:14 +00:00
return check(globalSettings->get("JVisualVMPath").toString(), error);
}
bool JVisualVMFactory::check(const QString& path, QString* error)
{
if (path.isEmpty()) {
*error = QObject::tr("Empty path");
return false;
}
QFileInfo finfo(path);
if (!finfo.isExecutable() || !finfo.fileName().contains("visualvm")) {
*error = QObject::tr("Invalid path to JVisualVM");
return false;
}
return true;
}
2015-04-06 19:52:59 +01:00
#include "JVisualVM.moc"