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"
|
2015-07-10 04:41:06 +05:30
|
|
|
#include "launch/LaunchTask.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "BaseInstance.h"
|
2014-02-15 18:49:35 +05:30
|
|
|
|
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:
|
2018-07-15 18:21:05 +05:30
|
|
|
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)
|
2018-07-15 18:21:05 +05:30
|
|
|
: BaseProfiler(settings, instance, parent)
|
2014-02-15 18:49:35 +05:30
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-07-10 04:41:06 +05:30
|
|
|
void JVisualVM::beginProfilingImpl(std::shared_ptr<LaunchTask> process)
|
2014-02-15 18:49:35 +05:30
|
|
|
{
|
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
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
connect(profiler, SIGNAL(started()), SLOT(profilerStarted()));
|
|
|
|
connect(profiler, SIGNAL(finished(int, QProcess::ExitStatus)), SLOT(profilerFinished(int,QProcess::ExitStatus)));
|
2015-04-07 00:22:59 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
profiler->start();
|
|
|
|
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
|
|
|
{
|
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-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
|
|
|
{
|
2018-07-15 18:21:05 +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)
|
|
|
|
{
|
2018-07-15 18:21:05 +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)
|
|
|
|
{
|
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;
|
2014-02-15 18:49:35 +05:30
|
|
|
}
|
2015-04-07 00:22:59 +05:30
|
|
|
|
|
|
|
#include "JVisualVM.moc"
|