pollymc/launcher/tools/JVisualVM.cpp

105 lines
2.6 KiB
C++
Raw Normal View History

#include "JVisualVM.h"
#include <QDir>
#include <QStandardPaths>
2015-02-09 06:21:14 +05:30
#include "settings/SettingsObject.h"
#include "launch/LaunchTask.h"
2015-02-09 06:21:14 +05:30
#include "BaseInstance.h"
2015-04-07 00:22:59 +05:30
class JVisualVM : public BaseProfiler
{
2018-07-15 18:21:05 +05:30
Q_OBJECT
2015-04-07 00:22:59 +05:30
public:
2018-07-15 18:21:05 +05:30
JVisualVM(SettingsObjectPtr settings, InstancePtr instance, QObject *parent = 0);
2015-04-07 00:22:59 +05:30
private slots:
2018-07-15 18:21:05 +05:30
void profilerStarted();
void profilerFinished(int exit, QProcess::ExitStatus status);
2015-04-07 00:22:59 +05:30
protected:
void beginProfilingImpl(shared_qobject_ptr<LaunchTask> process);
2015-04-07 00:22:59 +05:30
};
2015-02-09 06:21:14 +05:30
JVisualVM::JVisualVM(SettingsObjectPtr settings, InstancePtr instance, QObject *parent)
2018-07-15 18:21:05 +05:30
: BaseProfiler(settings, instance, parent)
{
}
2015-04-07 00:22:59 +05:30
void JVisualVM::profilerStarted()
{
2018-07-15 18:21:05 +05:30
emit readyToLaunch(tr("JVisualVM started"));
2015-04-07 00:22:59 +05:30
}
void JVisualVM::profilerFinished(int exit, QProcess::ExitStatus status)
{
2018-07-15 18:21:05 +05:30
if (status == QProcess::CrashExit)
{
emit abortLaunch(tr("Profiler aborted"));
}
if (m_profilerProcess)
{
m_profilerProcess->deleteLater();
m_profilerProcess = 0;
}
2015-04-07 00:22:59 +05:30
}
void JVisualVM::beginProfilingImpl(shared_qobject_ptr<LaunchTask> process)
{
2018-07-15 18:21:05 +05:30
QProcess *profiler = new QProcess(this);
QStringList profilerArgs =
{
"--openpid", QString::number(process->pid())
};
auto programPath = globalSettings->get("JVisualVMPath").toString();
2015-04-07 00:22:59 +05:30
2018-07-15 18:21:05 +05:30
profiler->setArguments(profilerArgs);
profiler->setProgram(programPath);
2015-04-07 00:22:59 +05:30
connect(profiler, &QProcess::started, this, &JVisualVM::profilerStarted);
connect(profiler, QOverload<int, QProcess::ExitStatus>::of(&QProcess::finished), this, &JVisualVM::profilerFinished);
2015-04-07 00:22:59 +05:30
2018-07-15 18:21:05 +05:30
profiler->start();
m_profilerProcess = profiler;
}
2015-02-09 06:21:14 +05:30
void JVisualVMFactory::registerSettings(SettingsObjectPtr settings)
{
2018-07-15 18:21:05 +05:30
QString defaultValue = QStandardPaths::findExecutable("jvisualvm");
if (defaultValue.isNull())
{
defaultValue = QStandardPaths::findExecutable("visualvm");
}
settings->registerSetting("JVisualVMPath", defaultValue);
globalSettings = settings;
}
2014-03-30 23:41:05 +05:30
BaseExternalTool *JVisualVMFactory::createTool(InstancePtr instance, QObject *parent)
{
2018-07-15 18:21:05 +05:30
return new JVisualVM(globalSettings, instance, parent);
}
bool JVisualVMFactory::check(QString *error)
{
2018-07-15 18:21:05 +05:30
return check(globalSettings->get("JVisualVMPath").toString(), error);
}
bool JVisualVMFactory::check(const QString &path, QString *error)
{
2018-07-15 18:21:05 +05:30
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-07 00:22:59 +05:30
#include "JVisualVM.moc"