summaryrefslogtreecommitdiffstats
path: root/logic/JavaChecker.h
blob: 4488da66de7a56bb9cf65c443f6738f1baa5a60b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once
#include <QProcess>
#include <QTimer>
#include <memory>

class JavaChecker;

struct JavaCheckResult
{
	QString path;
	QString mojangPlatform;
	QString realPlatform;
	QString javaVersion;
	bool valid = false;
	bool is_64bit = false;
};

typedef std::shared_ptr<QProcess> QProcessPtr;
typedef std::shared_ptr<JavaChecker> JavaCheckerPtr;
class JavaChecker : public QObject
{
	Q_OBJECT
public:
	explicit JavaChecker(QObject *parent = 0);
	void performCheck();

	QString path;

signals:
	void checkFinished(JavaCheckResult result);
private:
	QProcessPtr process;
	QTimer killTimer;
public
slots:
	void timeout();
	void finished(int exitcode, QProcess::ExitStatus);
	void error(QProcess::ProcessError);
};