All checks were successful
build / build (push) Successful in 2m18s
- basic generation of json files - supported parsers: - healthcheck - result-detail - result-status - file - log - dummy - keyword (keyword, clangtidy, cppcheck, cpplint) - diff - `convert` functions is mature, tested in engr151-24fa last two homeworks and engr151-24fa p3 - teapot and healthcheck should be up to date Co-authored-by: Boming Zhang <bomingzh@sjtu.edu.cn> Reviewed-on: #10 Reviewed-by: Boming Zhang <bomingzh@sjtu.edu.cn> Co-authored-by: jon-lee <jon-lee@sjtu.edu.cn> Co-committed-by: jon-lee <jon-lee@sjtu.edu.cn>
74 lines
2.5 KiB
Python
74 lines
2.5 KiB
Python
import json
|
|
from pathlib import Path
|
|
|
|
import rtoml
|
|
import typer
|
|
from typing_extensions import Annotated
|
|
|
|
from joj3_config_generator.convert import convert as convert_conf
|
|
from joj3_config_generator.convert import convert_joj1 as convert_joj1_conf
|
|
from joj3_config_generator.load import (
|
|
load_joj1_yaml,
|
|
load_joj3_toml,
|
|
load_joj3_toml_answers,
|
|
)
|
|
from joj3_config_generator.models.const import JOJ3_CONFIG_ROOT
|
|
from joj3_config_generator.utils.logger import logger
|
|
|
|
app = typer.Typer(add_completion=False)
|
|
|
|
|
|
@app.command()
|
|
def create(toml_path: Path) -> None:
|
|
"""
|
|
Create a new JOJ3 toml config file
|
|
"""
|
|
logger.info(f"Creating toml file {toml_path}")
|
|
answers = load_joj3_toml_answers()
|
|
logger.debug(f"Got answers: {answers}")
|
|
toml_path.write_text(rtoml.dumps({}))
|
|
|
|
|
|
@app.command()
|
|
def convert_joj1(yaml_path: Path, toml_path: Path) -> None:
|
|
"""
|
|
Convert a JOJ1 yaml config file to JOJ3 toml config file
|
|
"""
|
|
logger.info(f"Converting yaml file {yaml_path}")
|
|
joj1_model = load_joj1_yaml(yaml_path)
|
|
task_model = convert_joj1_conf(joj1_model)
|
|
result_dict = task_model.model_dump(mode="json", by_alias=True, exclude_none=True)
|
|
toml_path.write_text(rtoml.dumps(result_dict))
|
|
|
|
|
|
@app.command()
|
|
def convert(
|
|
root: Annotated[
|
|
Path,
|
|
typer.Argument(
|
|
help=f"root directory of config files, located at {JOJ3_CONFIG_ROOT} in JTC"
|
|
),
|
|
] = Path(".")
|
|
) -> None:
|
|
"""
|
|
Convert given dir of JOJ3 toml config files to JOJ3 json config files
|
|
"""
|
|
logger.info(f"Converting files in {root.absolute()}")
|
|
for repo_toml_path in root.glob("**/repo.toml"):
|
|
for task_toml_path in repo_toml_path.parent.glob("**/*.toml"):
|
|
if repo_toml_path == task_toml_path:
|
|
continue
|
|
toml_name = task_toml_path.name.removesuffix(".toml")
|
|
result_json_path = task_toml_path.parent / f"{toml_name}.json"
|
|
logger.info(
|
|
f"Converting {repo_toml_path} & {task_toml_path} to {result_json_path}"
|
|
)
|
|
repo_conf, task_conf = load_joj3_toml(root, repo_toml_path, task_toml_path)
|
|
result_model = convert_conf(repo_conf, task_conf)
|
|
result_dict = result_model.model_dump(
|
|
mode="json", by_alias=True, exclude_none=True
|
|
)
|
|
with result_json_path.open("w") as result_file:
|
|
json.dump(result_dict, result_file, ensure_ascii=False, indent=4)
|
|
result_file.write("\n")
|