pollymc/logic/java/JavaChecker.h

43 lines
733 B
C
Raw Normal View History

#pragma once
#include <QProcess>
#include <QTimer>
#include <memory>
2013-12-11 09:24:39 +05:30
class JavaChecker;
struct JavaCheckResult
{
2013-12-11 09:24:39 +05:30
QString path;
QString mojangPlatform;
QString realPlatform;
2013-12-11 09:24:39 +05:30
QString javaVersion;
bool valid = false;
bool is_64bit = false;
int id;
};
2013-12-11 09:24:39 +05:30
typedef std::shared_ptr<QProcess> QProcessPtr;
typedef std::shared_ptr<JavaChecker> JavaCheckerPtr;
class JavaChecker : public QObject
{
Q_OBJECT
public:
explicit JavaChecker(QObject *parent = 0);
2013-12-11 09:24:39 +05:30
void performCheck();
QString path;
int id;
signals:
void checkFinished(JavaCheckResult result);
private:
QProcessPtr process;
QTimer killTimer;
public
slots:
void timeout();
void finished(int exitcode, QProcess::ExitStatus);
void error(QProcess::ProcessError);
};