PrismLauncher/launcher/tools/JVisualVM.cpp

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

105 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 "settings/SettingsObject.h"
#include "launch/LaunchTask.h"
2015-02-09 00:51:14 +00:00
#include "BaseInstance.h"
2015-04-06 19:52:59 +01:00
class JVisualVM : public BaseProfiler
{
Q_OBJECT
public:
JVisualVM(SettingsObjectPtr settings, InstancePtr instance, QObject *parent = 0);
private slots:
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
};
2015-02-09 00:51:14 +00: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(int exit, QProcess::ExitStatus status)
{
if (status == QProcess::CrashExit)
{
emit abortLaunch(tr("Profiler aborted"));
}
if (m_profilerProcess)
{
m_profilerProcess->deleteLater();
m_profilerProcess = 0;
}
}
void JVisualVM::beginProfilingImpl(shared_qobject_ptr<LaunchTask> process)
{
QProcess *profiler = new QProcess(this);
2015-04-06 19:52:59 +01:00
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())
{
defaultValue = QStandardPaths::findExecutable("visualvm");
}
settings->registerSetting("JVisualVMPath", defaultValue);
2015-02-09 00:51:14 +00:00
globalSettings = settings;
}
2014-03-30 19:11:05 +01:00
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"