pollymc/api/logic/tools/JVisualVM.cpp

105 lines
2.4 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
{
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(std::shared_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)
: BaseProfiler(settings, instance, parent)
{
}
2015-04-07 00:22:59 +05:30
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(std::shared_ptr<LaunchTask> process)
{
QProcess *profiler = new QProcess(this);
2015-04-07 00:22:59 +05:30
QStringList profilerArgs =
{
"--openpid", QString::number(process->pid())
2015-04-07 00:22:59 +05:30
};
auto programPath = globalSettings->get("JVisualVMPath").toString();
profiler->setArguments(profilerArgs);
profiler->setProgram(programPath);
connect(profiler, SIGNAL(started()), SLOT(profilerStarted()));
connect(profiler, SIGNAL(finished(int, QProcess::ExitStatus)), SLOT(profilerFinished(int,QProcess::ExitStatus)));
profiler->start();
m_profilerProcess = profiler;
}
2015-02-09 06:21:14 +05:30
void JVisualVMFactory::registerSettings(SettingsObjectPtr settings)
{
2014-02-16 16:30:38 +05:30
QString defaultValue = QStandardPaths::findExecutable("jvisualvm");
if (defaultValue.isNull())
{
defaultValue = QStandardPaths::findExecutable("visualvm");
}
settings->registerSetting("JVisualVMPath", defaultValue);
2015-02-09 06:21:14 +05:30
globalSettings = settings;
}
2014-03-30 23:41:05 +05:30
BaseExternalTool *JVisualVMFactory::createTool(InstancePtr instance, QObject *parent)
{
2015-02-09 06:21:14 +05:30
return new JVisualVM(globalSettings, instance, parent);
}
bool JVisualVMFactory::check(QString *error)
{
2015-02-09 06:21:14 +05:30
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-07 00:22:59 +05:30
#include "JVisualVM.moc"