Add module that about java runtime management to core_lib.
This commit is contained in:
@@ -0,0 +1,151 @@
|
||||
import glob
|
||||
import logging
|
||||
import os
|
||||
import platform
|
||||
import re
|
||||
import shutil
|
||||
import subprocess
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
from core_lib.common.exception import JavaRuntimeException, JavaRuntimeParseException
|
||||
|
||||
logger = logging.getLogger("Launcher.CoreLib")
|
||||
|
||||
def get_java_version(java_executable_path: str | Path) -> tuple[int, str]:
|
||||
if isinstance(java_executable_path, Path):
|
||||
java_executable_path = java_executable_path.as_posix()
|
||||
|
||||
try:
|
||||
process = subprocess.run(
|
||||
[java_executable_path, "-version"],
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
text=True,
|
||||
encoding="utf-8",
|
||||
errors="replace",
|
||||
timeout=10,
|
||||
)
|
||||
except subprocess.TimeoutExpired:
|
||||
raise JavaRuntimeException(
|
||||
"Java runtime timed out.",
|
||||
)
|
||||
except subprocess.CalledProcessError as e:
|
||||
raise JavaRuntimeException(
|
||||
"Unable to run Java runtime: {}".format(e.stderr),
|
||||
)
|
||||
except Exception as e:
|
||||
raise JavaRuntimeException(
|
||||
"An error occurred while executing Java runtime: {}".format(e),
|
||||
)
|
||||
|
||||
output = (process.stderr or "") + "\n" + (process.stdout or "")
|
||||
|
||||
match = re.search(r'version "([^"]+)"', output)
|
||||
if not match:
|
||||
raise JavaRuntimeParseException(
|
||||
f"Unable to parse Java version:\n{output}"
|
||||
)
|
||||
|
||||
raw_version = match.group(1)
|
||||
|
||||
if raw_version.startswith("1."):
|
||||
major = int(raw_version.split(".")[1])
|
||||
else:
|
||||
major = int(raw_version.split(".")[0])
|
||||
|
||||
return major, raw_version
|
||||
|
||||
def find_java_installations(extra_install_patterns: list | None=None) -> list[dict]:
|
||||
candidates_paths = []
|
||||
installations = []
|
||||
|
||||
java_executable_name = "java.exe" if sys.platform == "win32" else "java"
|
||||
|
||||
# Check (system) environment
|
||||
path_java = shutil.which("java")
|
||||
if path_java:
|
||||
candidates_paths.append(Path(path_java))
|
||||
|
||||
java_home = os.environ.get("JAVA_HOME")
|
||||
if java_home:
|
||||
candidates_paths.append(Path(java_home) / "bin" / java_executable_name)
|
||||
|
||||
system = platform.system().lower()
|
||||
|
||||
if system == "windows":
|
||||
patterns = [
|
||||
r"C:\Program Files\Java\*\bin\java.exe",
|
||||
r"C:\Program Files\Eclipse Adoptium\*\bin\java.exe",
|
||||
r"C:\Program Files\Microsoft\jdk-*\bin\java.exe",
|
||||
r"C:\Program Files (x86)\Java\*\bin\java.exe",
|
||||
]
|
||||
elif system == "darwin":
|
||||
patterns = [
|
||||
"/Library/Java/JavaVirtualMachines/*/Contents/Home/bin/java",
|
||||
"/System/Library/Java/JavaVirtualMachines/*/Contents/Home/bin/java",
|
||||
"/opt/homebrew/opt/openjdk*/bin/java",
|
||||
"/usr/local/opt/openjdk*/bin/java",
|
||||
"/Applications/*/Contents/jbr/Contents/Home/bin/java",
|
||||
]
|
||||
|
||||
else:
|
||||
patterns = [
|
||||
"/usr/bin/java",
|
||||
"/bin/java",
|
||||
"/usr/local/bin/java",
|
||||
"/usr/lib/jvm/*/bin/java",
|
||||
"/opt/java/*/bin/java",
|
||||
"/opt/jdk*/bin/java",
|
||||
"/snap/*/current/bin/java",
|
||||
]
|
||||
|
||||
if isinstance(extra_install_patterns, list):
|
||||
patterns.extend(extra_install_patterns)
|
||||
|
||||
for pattern in patterns:
|
||||
candidates_paths.extend(Path(p) for p in glob.glob(pattern))
|
||||
|
||||
seen = set()
|
||||
errors = []
|
||||
|
||||
for candidate_path in candidates_paths:
|
||||
try:
|
||||
converted_path = candidate_path.resolve().absolute()
|
||||
except OSError:
|
||||
continue
|
||||
|
||||
if converted_path in seen:
|
||||
continue
|
||||
|
||||
ver = None
|
||||
raw = None
|
||||
|
||||
try:
|
||||
ver, raw = get_java_version(converted_path)
|
||||
except JavaRuntimeParseException:
|
||||
|
||||
logger.debug(f"Unable to parse java version: {converted_path}")
|
||||
except JavaRuntimeException:
|
||||
logger.debug(f"Unable to run java executable: {converted_path}")
|
||||
except Exception as e:
|
||||
logger.exception(f"Unhandled exception: {e} (For path: {converted_path})")
|
||||
finally:
|
||||
if not ver:
|
||||
errors.append(converted_path)
|
||||
continue
|
||||
|
||||
logger.debug(f"Detected java version {ver} for path: {converted_path}")
|
||||
|
||||
installations.append(
|
||||
{
|
||||
"major": ver,
|
||||
"raw": raw,
|
||||
"homeDir": converted_path.parent.parent,
|
||||
"executable": converted_path,
|
||||
}
|
||||
)
|
||||
|
||||
installations.sort(key=lambda item: item["major"], reverse=True)
|
||||
|
||||
return installations
|
||||
@@ -0,0 +1,353 @@
|
||||
import hashlib
|
||||
import json
|
||||
import logging
|
||||
import platform
|
||||
from concurrent.futures import ThreadPoolExecutor, as_completed
|
||||
from pathlib import Path
|
||||
from typing import Callable
|
||||
|
||||
import requests
|
||||
|
||||
from ..common.common import get_platform_info, FileObject, download_multiple_files
|
||||
from ..common.exception import RuntimeManifestFetchException, UnsupportedPlatformException, \
|
||||
RuntimeManifestDataException, HashMismatchException, DownloadException
|
||||
from ..game.version_info import RUNTIME_PLATFORM_MAP, RUNTIME_ARCH_EMPTY, RUNTIME_ARCH_MAP
|
||||
|
||||
MOJANG_RUNTIME_MANIFEST = "https://launchermeta.mojang.com/v1/products/java-runtime/2ec0cc96c44e5a76b9c8b7c39df7210883d12871/all.json"
|
||||
RUNTIME_CHECK_MAX_WORKERS = 10
|
||||
RUNTIME_DOWNLOAD_MAX_WORKERS = 12
|
||||
|
||||
logger = logging.getLogger("Launcher.CoreLib")
|
||||
|
||||
|
||||
def get_current_platform_runtime_key() -> str | None:
|
||||
"""
|
||||
Get the current platform runtime key.
|
||||
:return:
|
||||
runtime_key: str
|
||||
"""
|
||||
platform_name, arch, os_version = get_platform_info()
|
||||
|
||||
runtime_os_name = RUNTIME_PLATFORM_MAP.get(platform_name, None)
|
||||
|
||||
if runtime_os_name is None:
|
||||
return None
|
||||
|
||||
runtime_arch_name = RUNTIME_ARCH_MAP.get(runtime_os_name, {}).get(arch, None)
|
||||
|
||||
if runtime_arch_name is None:
|
||||
return None
|
||||
|
||||
# If architecture type is x86_64, some platform's runtime key is same as runtime_os_name. (Such as linux and macOS)
|
||||
if runtime_arch_name == RUNTIME_ARCH_EMPTY:
|
||||
return runtime_os_name
|
||||
|
||||
full_key = f"{runtime_os_name}-{runtime_arch_name}"
|
||||
|
||||
return full_key
|
||||
|
||||
|
||||
def fetch_runtime_manifest(manifest_url=MOJANG_RUNTIME_MANIFEST, timeout=10) -> dict:
|
||||
"""
|
||||
Fetch the runtime manifest data.
|
||||
:param manifest_url:
|
||||
:param timeout:
|
||||
:return:
|
||||
root_manifest: dict
|
||||
"""
|
||||
logger.debug("Getting version manifest from {}".format(manifest_url))
|
||||
|
||||
try:
|
||||
r = requests.get(manifest_url, timeout=timeout)
|
||||
r.raise_for_status()
|
||||
except requests.exceptions.RequestException as e:
|
||||
raise RuntimeManifestFetchException(
|
||||
"Unable to fetch runtime manifest from {}: {}".format(manifest_url, e),
|
||||
)
|
||||
|
||||
try:
|
||||
data = r.json()
|
||||
logger.debug("RuntimeManifest: {}".format(json.dumps(data, indent=4)))
|
||||
return data
|
||||
except ValueError as e:
|
||||
raise RuntimeManifestFetchException(
|
||||
"Unable to deserialize response data into dictionary: {}".format(e)
|
||||
)
|
||||
|
||||
|
||||
def find_support_runtime_manifests_info(root_runtime_manifest: dict, require_component: str) -> list:
|
||||
"""
|
||||
Find support runtime manifest (info) by platform.
|
||||
:param root_runtime_manifest:
|
||||
:param require_component:
|
||||
:return:
|
||||
manifests_info: list
|
||||
"""
|
||||
runtime_key = get_current_platform_runtime_key()
|
||||
|
||||
if not runtime_key:
|
||||
raise UnsupportedPlatformException(
|
||||
"Theres no runtime support the current platform or architecture."
|
||||
)
|
||||
|
||||
runtime_section = root_runtime_manifest.get(runtime_key, {})
|
||||
|
||||
if not runtime_section:
|
||||
raise RuntimeManifestDataException(
|
||||
"Root runtime manifest missing runtime key {} data.".format(runtime_key)
|
||||
)
|
||||
|
||||
runtimes = runtime_section.get(require_component, [])
|
||||
|
||||
if not runtimes:
|
||||
raise RuntimeManifestDataException(
|
||||
"Found require component section. But is empty: {}".format(require_component))
|
||||
|
||||
usable = [
|
||||
item for item in runtimes
|
||||
if item.get("manifest", {}).get("url")
|
||||
]
|
||||
|
||||
if not usable:
|
||||
raise RuntimeManifestDataException(
|
||||
"No usable runtime manifest data found for component {}".format(require_component)
|
||||
)
|
||||
|
||||
return usable
|
||||
|
||||
|
||||
def get_support_runtime_manifest(root_runtime_manifest: dict, require_component: str, no_hash_check=False) -> dict:
|
||||
runtime_info = find_support_runtime_manifests_info(root_runtime_manifest, require_component)[0]
|
||||
manifest_info = runtime_info.get("manifest", {})
|
||||
url = manifest_info.get("url")
|
||||
expected_sha1 = manifest_info.get("sha1")
|
||||
|
||||
if not url:
|
||||
raise RuntimeManifestDataException(
|
||||
"Runtime info missing manifest url"
|
||||
)
|
||||
|
||||
if not expected_sha1 and not no_hash_check:
|
||||
raise RuntimeManifestDataException(
|
||||
"Runtime manifest missing sha1 data from {}".format(url)
|
||||
)
|
||||
|
||||
# Fetch data
|
||||
try:
|
||||
r = requests.get(url, timeout=10)
|
||||
r.raise_for_status()
|
||||
except requests.exceptions.RequestException as e:
|
||||
raise RuntimeManifestFetchException(
|
||||
"Unable to fetch runtime manifest from {}: {}".format(url, e),
|
||||
)
|
||||
|
||||
# Verify it and convert it to dict
|
||||
content = r.content
|
||||
actual_sha1 = hashlib.sha1(content).hexdigest()
|
||||
try:
|
||||
if not no_hash_check and actual_sha1 != expected_sha1:
|
||||
raise RuntimeManifestFetchException(
|
||||
"Hash mismatch for runtime manifest from url {} got {} "
|
||||
"and root manifest expected {}".format(url, actual_sha1, expected_sha1)
|
||||
)
|
||||
|
||||
data = json.loads(content.decode("utf-8"))
|
||||
logger.debug("RuntimeManifest: {}".format(json.dumps(data, indent=4)))
|
||||
return data
|
||||
except Exception as e:
|
||||
raise RuntimeManifestFetchException(
|
||||
"Unable to fetch runtime manifest from {}: {}".format(url, e),
|
||||
)
|
||||
|
||||
|
||||
def _check_runtime_file(relative_path, file_type: str, sha1: str | None, size: str | None, url: str | None,
|
||||
executable: bool, runtime_dir: Path, no_hash_check: bool = False) -> tuple[
|
||||
bool, FileObject | Path | None]:
|
||||
full_path = runtime_dir / Path(relative_path)
|
||||
|
||||
if (not sha1 and not no_hash_check) and file_type == "file":
|
||||
raise RuntimeManifestDataException(
|
||||
"Runtime manifest missing sha1 data from {}".format(url)
|
||||
)
|
||||
|
||||
if not url and file_type == "file":
|
||||
raise RuntimeManifestDataException(
|
||||
"Runtime manifest missing file url. {}".format(relative_path)
|
||||
)
|
||||
|
||||
if not file_type:
|
||||
raise RuntimeManifestDataException(
|
||||
"Runtime manifest missing file type. {}".format(relative_path)
|
||||
)
|
||||
|
||||
needs_download = True
|
||||
if file_type == "file":
|
||||
target_file = FileObject(
|
||||
path=full_path,
|
||||
sha1=sha1,
|
||||
size=size,
|
||||
url=url,
|
||||
)
|
||||
|
||||
if not target_file.expected_sha1 and not no_hash_check:
|
||||
raise RuntimeManifestDataException(
|
||||
"Runtime file hash is missing."
|
||||
)
|
||||
|
||||
# Check file exist
|
||||
if target_file.exists and target_file.path.is_file():
|
||||
if no_hash_check and target_file.expected_size is not None:
|
||||
needs_download = not target_file.verify("size")
|
||||
else:
|
||||
needs_download = not target_file.verify("sha1")
|
||||
|
||||
if not needs_download:
|
||||
suffix = " (no_hash_check=True)" if no_hash_check else ""
|
||||
logger.debug(
|
||||
"Runtime file {} already exists.{}".format(
|
||||
target_file,
|
||||
suffix
|
||||
)
|
||||
)
|
||||
elif file_type == "directory":
|
||||
target_file = Path(full_path)
|
||||
if target_file.exists() and target_file.is_dir():
|
||||
needs_download = False
|
||||
else:
|
||||
raise RuntimeManifestDataException(
|
||||
"Unsupported file type: {}".format(file_type)
|
||||
)
|
||||
|
||||
return executable == True, target_file if needs_download else None
|
||||
|
||||
|
||||
def collect_runtime_files(manifest: dict, runtime_dir: Path, max_workers=RUNTIME_CHECK_MAX_WORKERS,
|
||||
no_hash_check=False, use_raw=True) -> tuple[list[FileObject], list[FileObject], list[Path]]:
|
||||
"""
|
||||
Download runtime files from given manifest.
|
||||
:param manifest:
|
||||
:param runtime_dir:
|
||||
:param max_workers:
|
||||
:param no_hash_check:
|
||||
:param use_raw: Download raw files instead of download compressed files.
|
||||
:return:
|
||||
executables: Executable files that need to be downloaded and fix permission on some platform
|
||||
files: Runtime files that need to be downloaded
|
||||
dirs: Directories that need to be created
|
||||
"""
|
||||
result_executables = []
|
||||
result_files = []
|
||||
result_dirs = []
|
||||
files = manifest.get("files", {})
|
||||
|
||||
with ThreadPoolExecutor(max_workers=max_workers) as executor:
|
||||
futures = []
|
||||
|
||||
for relative_path in files:
|
||||
data = files[relative_path]
|
||||
downloads = data.get("downloads", {})
|
||||
artifact = downloads.get("raw" if use_raw else "lzma", {})
|
||||
file_type = data.get("type")
|
||||
sha1 = artifact.get("sha1")
|
||||
size = artifact.get("size")
|
||||
url = artifact.get("url")
|
||||
executable = data.get("executable", False)
|
||||
|
||||
futures.append(executor.submit(_check_runtime_file, relative_path, file_type, sha1, size, url,
|
||||
executable, runtime_dir, no_hash_check))
|
||||
|
||||
|
||||
for future in as_completed(futures):
|
||||
is_executable, file = future.result()
|
||||
|
||||
if file and isinstance(file, FileObject) and not is_executable:
|
||||
result_files.append(file)
|
||||
elif file and isinstance(file, FileObject) and is_executable:
|
||||
result_executables.append(file)
|
||||
elif file and isinstance(file, Path):
|
||||
result_dirs.append(file)
|
||||
|
||||
if not use_raw:
|
||||
logger.warning(
|
||||
"Flag \"raw\" is not enabled. But the launcher haven't implemented support for compressed files."
|
||||
"You will likely to decompress all files before use them."
|
||||
)
|
||||
|
||||
return result_executables, result_files, result_dirs
|
||||
|
||||
|
||||
def handle_runtime_dir_and_executable_process(dirs: list[Path], executables: list[Path | FileObject], max_workers=6):
|
||||
def _worker(path: Path | FileObject, is_executable: bool):
|
||||
if isinstance(path, FileObject):
|
||||
path = path.path
|
||||
|
||||
if is_executable:
|
||||
if platform.system() != "Windows" and path.exists():
|
||||
path.chmod(path.stat().st_mode | 0o755)
|
||||
return
|
||||
|
||||
path.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
with ThreadPoolExecutor(max_workers=max_workers) as executor:
|
||||
futures = [
|
||||
executor.submit(
|
||||
_worker,
|
||||
path,
|
||||
False)
|
||||
for path in dirs
|
||||
]
|
||||
|
||||
futures.extend(
|
||||
executor.submit(_worker, path, True)
|
||||
for path in executables
|
||||
)
|
||||
for future in as_completed(futures):
|
||||
future.result()
|
||||
|
||||
|
||||
def download_java_runtimes(component: str, runtime_dir: Path, no_hash_check: bool = False,
|
||||
progress_callback: Callable[[str, float], None] = None,
|
||||
redownload_callback: Callable[[list[FileObject]], tuple[bool, list[FileObject]]] = None,
|
||||
max_download_workers=RUNTIME_CHECK_MAX_WORKERS,
|
||||
max_check_workers=RUNTIME_DOWNLOAD_MAX_WORKERS) -> None:
|
||||
"""
|
||||
Download runtime files from given component.
|
||||
:param component: Target component of the java runtime (e.g. java-runtime-alpha, java-runtime-beta)
|
||||
:param runtime_dir:
|
||||
:param no_hash_check:
|
||||
:param progress_callback:
|
||||
:param redownload_callback:
|
||||
:param max_download_workers:
|
||||
:param max_check_workers:
|
||||
:return:
|
||||
None
|
||||
"""
|
||||
# Fetch manifest
|
||||
root_manifest = fetch_runtime_manifest()
|
||||
manifest = get_support_runtime_manifest(root_manifest, component, no_hash_check=no_hash_check)
|
||||
executables, files, dirs = collect_runtime_files(manifest, runtime_dir, max_workers=max_check_workers,
|
||||
no_hash_check=no_hash_check)
|
||||
|
||||
# Download runtime files
|
||||
full_files = list(files)
|
||||
full_files.extend(list(executables))
|
||||
fails, successes = download_multiple_files(full_files, max_workers=max_download_workers,
|
||||
progress_callback=progress_callback)
|
||||
|
||||
download_ok = len(fails) == 0
|
||||
|
||||
if fails and callable(redownload_callback):
|
||||
download_ok, fails = redownload_callback(fails)
|
||||
|
||||
if not download_ok:
|
||||
logger.warning(
|
||||
"Download failed for runtime files: \n"
|
||||
+ "\n".join([asset.posix_path for asset in fails])
|
||||
)
|
||||
raise DownloadException(
|
||||
"Unable to download some runtime files.\n"
|
||||
)
|
||||
|
||||
handle_runtime_dir_and_executable_process(dirs, executables, max_workers=max_check_workers)
|
||||
|
||||
return
|
||||
Reference in New Issue
Block a user