mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 04:43:00 +00:00
71 lines
2 KiB
Python
71 lines
2 KiB
Python
import functools
|
|
from pathlib import Path
|
|
from typing import TYPE_CHECKING, Optional, Dict, Any
|
|
|
|
import attr
|
|
from ruamel.yaml import CommentedMap
|
|
|
|
from ._constants import COMPOSE_FILE_NAME, CONF_DIRECTORY_NAME
|
|
from .config import ProjectConfig
|
|
from .service import Service
|
|
from .services import Services
|
|
from .yaml import YAML
|
|
|
|
if TYPE_CHECKING:
|
|
from .instance import Instance
|
|
|
|
|
|
@attr.s
|
|
class Project:
|
|
directory: Path = attr.ib()
|
|
parent: "Instance" = attr.ib()
|
|
|
|
@staticmethod
|
|
@functools.lru_cache(maxsize=10)
|
|
def _parse_compose_file(directory: Path) -> CommentedMap:
|
|
with open(directory.joinpath(COMPOSE_FILE_NAME), "r") as cf:
|
|
return YAML().load(cf)
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
return self.directory.name
|
|
|
|
@property
|
|
def config(self) -> Optional[ProjectConfig]:
|
|
return self.parent.config.get_project_config(self.name)
|
|
|
|
@property
|
|
def process_kwargs(self) -> Dict[str, Any]:
|
|
directory: Path = self.directory
|
|
project_name: str = self.name
|
|
kiwi_hub_name: str = self.parent.config.network.name
|
|
target_root_dir: Path = self.parent.config.storage.directory
|
|
conf_dir: Path = target_root_dir.joinpath(CONF_DIRECTORY_NAME)
|
|
target_dir: Path = target_root_dir.joinpath(project_name)
|
|
|
|
result: Dict[str, Any] = {
|
|
"cwd": str(directory),
|
|
"env": {
|
|
"COMPOSE_PROJECT_NAME": project_name,
|
|
"KIWI_HUB_NAME": kiwi_hub_name,
|
|
"TARGETROOT": str(target_root_dir),
|
|
"CONFIGDIR": str(conf_dir),
|
|
"TARGETDIR": str(target_dir),
|
|
},
|
|
}
|
|
|
|
result["env"].update(self.parent.config.environment)
|
|
|
|
return result
|
|
|
|
@property
|
|
def services(self) -> Services:
|
|
yml = Project._parse_compose_file(self.directory)
|
|
|
|
return Services([
|
|
Service(
|
|
name=name,
|
|
content=content,
|
|
parent=self,
|
|
) for name, content in yml["services"].items()
|
|
])
|