2014-02-15 18:49:35 +05:30
|
|
|
#include "JVisualVM.h"
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
#include <QStandardPaths>
|
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "settings/SettingsObject.h"
|
|
|
|
#include "BaseProcess.h"
|
|
|
|
#include "BaseInstance.h"
|
2014-02-15 18:49:35 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
JVisualVM::JVisualVM(SettingsObjectPtr settings, InstancePtr instance, QObject *parent)
|
|
|
|
: BaseProfiler(settings, instance, parent)
|
2014-02-15 18:49:35 +05:30
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
void JVisualVM::beginProfilingImpl(BaseProcess *process)
|
2014-02-15 18:49:35 +05:30
|
|
|
{
|
|
|
|
QProcess *profiler = new QProcess(this);
|
2014-02-15 23:37:01 +05:30
|
|
|
profiler->setArguments(QStringList() << "--openpid" << QString::number(pid(process)));
|
2015-02-09 06:21:14 +05:30
|
|
|
profiler->setProgram(globalSettings->get("JVisualVMPath").toString());
|
2014-02-15 18:49:35 +05:30
|
|
|
connect(profiler, &QProcess::started, [this]()
|
|
|
|
{ emit readyToLaunch(tr("JVisualVM started")); });
|
2014-02-16 13:24:52 +05:30
|
|
|
connect(profiler,
|
|
|
|
static_cast<void (QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished),
|
|
|
|
[this](int exit, QProcess::ExitStatus status)
|
|
|
|
{
|
|
|
|
if (exit != 0 || status == QProcess::CrashExit)
|
|
|
|
{
|
|
|
|
emit abortLaunch(tr("Profiler aborted"));
|
|
|
|
}
|
2014-02-16 14:00:38 +05:30
|
|
|
if (m_profilerProcess)
|
|
|
|
{
|
|
|
|
m_profilerProcess->deleteLater();
|
|
|
|
m_profilerProcess = 0;
|
|
|
|
}
|
2014-02-16 13:24:52 +05:30
|
|
|
});
|
2014-02-15 18:49:35 +05:30
|
|
|
profiler->start();
|
2014-02-16 13:24:52 +05:30
|
|
|
m_profilerProcess = profiler;
|
2014-02-15 18:49:35 +05:30
|
|
|
}
|
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
void JVisualVMFactory::registerSettings(SettingsObjectPtr settings)
|
2014-02-15 18:49:35 +05:30
|
|
|
{
|
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-02-15 18:49:35 +05:30
|
|
|
}
|
|
|
|
|
2014-03-30 23:41:05 +05:30
|
|
|
BaseExternalTool *JVisualVMFactory::createTool(InstancePtr instance, QObject *parent)
|
2014-02-15 18:49:35 +05:30
|
|
|
{
|
2015-02-09 06:21:14 +05:30
|
|
|
return new JVisualVM(globalSettings, instance, parent);
|
2014-02-15 18:49:35 +05:30
|
|
|
}
|
|
|
|
|
2014-02-16 02:56:44 +05:30
|
|
|
bool JVisualVMFactory::check(QString *error)
|
|
|
|
{
|
2015-02-09 06:21:14 +05:30
|
|
|
return check(globalSettings->get("JVisualVMPath").toString(), error);
|
2014-02-16 02:56:44 +05:30
|
|
|
}
|
|
|
|
|
2014-02-15 18:49:35 +05:30
|
|
|
bool JVisualVMFactory::check(const QString &path, QString *error)
|
|
|
|
{
|
2014-02-16 02:56:44 +05:30
|
|
|
if (path.isEmpty())
|
|
|
|
{
|
|
|
|
*error = QObject::tr("Empty path");
|
|
|
|
return false;
|
|
|
|
}
|
2014-11-03 00:59:09 +05:30
|
|
|
if (!QDir::isAbsolutePath(path) || !QFileInfo(path).isExecutable() || !path.contains("visualvm"))
|
2014-02-15 18:49:35 +05:30
|
|
|
{
|
|
|
|
*error = QObject::tr("Invalid path to JVisualVM");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|