2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-10-05 01:08:13 +01:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QStringList>
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-12-11 03:54:39 +00:00
|
|
|
#include "JavaChecker.h"
|
2016-01-01 23:35:54 +00:00
|
|
|
#include "JavaInstallList.h"
|
2013-10-06 19:54:52 +01:00
|
|
|
|
2015-10-05 00:47:27 +01:00
|
|
|
#ifdef Q_OS_WIN
|
2013-11-04 01:53:05 +00:00
|
|
|
#include <windows.h>
|
2013-10-06 19:54:52 +01:00
|
|
|
#endif
|
|
|
|
|
2022-06-24 16:54:01 +01:00
|
|
|
QString stripVariableEntries(QString name, QString target, QString remove);
|
2017-08-22 23:23:35 +01:00
|
|
|
QProcessEnvironment CleanEnviroment();
|
|
|
|
|
2023-08-02 17:35:35 +01:00
|
|
|
class JavaUtils : public QObject {
|
2013-12-11 03:54:39 +00:00
|
|
|
Q_OBJECT
|
2023-08-02 17:35:35 +01:00
|
|
|
public:
|
2013-10-05 01:08:13 +01:00
|
|
|
JavaUtils();
|
|
|
|
|
2016-01-01 23:35:54 +00:00
|
|
|
JavaInstallPtr MakeJavaPtr(QString path, QString id = "unknown", QString arch = "unknown");
|
2013-12-12 14:56:32 +00:00
|
|
|
QList<QString> FindJavaPaths();
|
2016-01-01 23:35:54 +00:00
|
|
|
JavaInstallPtr GetDefaultJava();
|
2013-10-14 02:59:21 +01:00
|
|
|
|
2015-10-05 00:47:27 +01:00
|
|
|
#ifdef Q_OS_WIN
|
2021-06-18 16:02:41 +01:00
|
|
|
QList<JavaInstallPtr> FindJavaFromRegistryKey(DWORD keyType, QString keyName, QString keyJavaDir, QString subkeySuffix = "");
|
2013-10-06 19:54:52 +01:00
|
|
|
#endif
|
2022-06-14 21:00:24 +01:00
|
|
|
|
|
|
|
static QString getJavaCheckPath();
|
2013-10-05 01:08:13 +01:00
|
|
|
};
|