1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 11:35:35 +03:00
vimr/third-party/config.py

90 lines
2.8 KiB
Python
Raw Normal View History

2020-08-21 09:59:40 +03:00
import shutil
from dataclasses import dataclass
2020-09-05 13:46:17 +03:00
from enum import Enum
2020-08-21 09:59:40 +03:00
from pathlib import Path
2020-09-05 13:46:17 +03:00
class Target(Enum):
arm64 = "arm64"
x86_64 = "x86_64"
2020-08-21 09:59:40 +03:00
@dataclass(frozen=True)
class Config:
"""The working_directory should be set for the particular library, e.g. ./.deps/xz"""
version: str
arm64_deployment_target: str
x86_64_deployment_target: str
default_cflags: str
target_install_path_parent: Path
install_path_include: Path
install_path_lib: Path
working_directory: Path
def target_specific_host(self, target: Target) -> str:
if target is Target.arm64:
return "arm-apple-macos"
elif target is Target.x86_64:
return "x86_64-apple-macos"
else:
raise ValueError
def target_specific_deployment_target(self, target: Target) -> str:
if target is Target.arm64:
2020-09-05 13:46:17 +03:00
return self.arm64_deployment_target
elif target is Target.x86_64:
2020-09-05 13:46:17 +03:00
return self.x86_64_deployment_target
else:
raise ValueError
def target_specific_full_cflags(self, target: Target) -> str:
if target is Target.arm64:
2020-09-05 13:46:17 +03:00
return self.arm64_full_cflags
elif target is Target.x86_64:
2020-09-05 13:46:17 +03:00
return self.x86_64_full_cflags
else:
raise ValueError
def target_specific_install_path(self, target: Target) -> Path:
if target is Target.arm64:
2020-09-05 13:46:17 +03:00
return self.arm64_install_path
elif target is Target.x86_64:
2020-09-05 13:46:17 +03:00
return self.x86_64_install_path
else:
raise ValueError
2020-08-21 09:59:40 +03:00
@property
def arm64_full_cflags(self) -> str:
return f"{self.default_cflags} --target=arm64-apple-macos{self.arm64_deployment_target}"
@property
def x86_64_full_cflags(self) -> str:
return f"{self.default_cflags} --target=x86_64-apple-macos{self.x86_64_deployment_target}"
@property
def arm64_install_path(self) -> Path:
return self.target_install_path_parent.joinpath("arm64")
@property
def x86_64_install_path(self) -> Path:
return self.target_install_path_parent.joinpath("x86_64")
def clean_install_paths(self):
shutil.rmtree(self.arm64_install_path, ignore_errors=True)
shutil.rmtree(self.x86_64_install_path, ignore_errors=True)
shutil.rmtree(self.target_install_path_parent, ignore_errors=True)
def ensure_paths_exist(self):
self.target_install_path_parent.mkdir(parents=True, exist_ok=True)
self.install_path_lib.mkdir(parents=True, exist_ok=True)
self.install_path_include.mkdir(parents=True, exist_ok=True)
self.arm64_install_path.mkdir(parents=True, exist_ok=True)
self.x86_64_install_path.mkdir(parents=True, exist_ok=True)
self.working_directory.mkdir(parents=True, exist_ok=True)