2023-09-14 09:45:01 +00:00
|
|
|
import shutil
|
|
|
|
import os
|
2024-08-06 01:41:38 +00:00
|
|
|
import sys
|
2023-09-14 09:45:01 +00:00
|
|
|
import traceback
|
2024-08-06 01:41:38 +00:00
|
|
|
from pdb import post_mortem
|
2024-08-07 04:40:23 +00:00
|
|
|
import subprocess
|
2023-09-14 09:45:01 +00:00
|
|
|
|
2023-08-25 07:22:47 +00:00
|
|
|
from argparse import ArgumentParser
|
|
|
|
from pathlib import Path
|
|
|
|
from linkml_runtime.dumpers import yaml_dumper
|
2023-09-14 09:45:01 +00:00
|
|
|
from rich.live import Live
|
|
|
|
from rich.panel import Panel
|
|
|
|
from rich.console import Group
|
|
|
|
from rich.progress import Progress, SpinnerColumn, BarColumn, TextColumn, Column
|
|
|
|
from rich import print
|
2023-08-29 05:16:58 +00:00
|
|
|
from nwb_linkml.generators.pydantic import NWBPydanticGenerator
|
2023-08-25 07:22:47 +00:00
|
|
|
|
2024-07-10 06:52:58 +00:00
|
|
|
from nwb_linkml.providers import LinkMLProvider, PydanticProvider
|
2024-07-31 08:13:31 +00:00
|
|
|
from nwb_linkml.providers.git import NWB_CORE_REPO, HDMF_COMMON_REPO, GitRepo
|
2023-09-14 09:45:01 +00:00
|
|
|
from nwb_linkml.io import schema as io
|
2023-09-06 02:25:20 +00:00
|
|
|
|
2024-08-05 23:05:44 +00:00
|
|
|
|
|
|
|
def generate_core_yaml(output_path: Path, dry_run: bool = False, hdmf_only: bool = False):
|
2023-09-14 09:45:01 +00:00
|
|
|
"""Just build the latest version of the core schema"""
|
2023-08-25 07:22:47 +00:00
|
|
|
|
2024-07-31 08:13:31 +00:00
|
|
|
core = io.load_nwb_core(hdmf_only=hdmf_only)
|
2023-08-25 07:22:47 +00:00
|
|
|
built_schemas = core.build().schemas
|
|
|
|
for schema in built_schemas:
|
2024-08-05 23:05:44 +00:00
|
|
|
output_file = output_path / (schema.name + ".yaml")
|
2023-09-14 09:45:01 +00:00
|
|
|
if not dry_run:
|
|
|
|
yaml_dumper.dump(schema, output_file)
|
2023-08-25 07:22:47 +00:00
|
|
|
|
2024-08-05 23:05:44 +00:00
|
|
|
|
|
|
|
def generate_core_pydantic(yaml_path: Path, output_path: Path, dry_run: bool = False):
|
2023-09-14 09:45:01 +00:00
|
|
|
"""Just generate the latest version of the core schema"""
|
2024-08-05 23:05:44 +00:00
|
|
|
for schema in yaml_path.glob("*.yaml"):
|
|
|
|
python_name = schema.stem.replace(".", "_").replace("-", "_")
|
|
|
|
pydantic_file = (output_path / python_name).with_suffix(".py")
|
2023-08-25 07:22:47 +00:00
|
|
|
|
2023-08-29 05:16:58 +00:00
|
|
|
generator = NWBPydanticGenerator(
|
2023-08-25 07:22:47 +00:00
|
|
|
str(schema),
|
2024-08-05 23:05:44 +00:00
|
|
|
pydantic_version="2",
|
2023-08-25 07:22:47 +00:00
|
|
|
emit_metadata=True,
|
|
|
|
gen_classvars=True,
|
2024-08-05 23:05:44 +00:00
|
|
|
gen_slots=True,
|
2023-08-25 07:22:47 +00:00
|
|
|
)
|
|
|
|
gen_pydantic = generator.serialize()
|
2023-09-14 09:45:01 +00:00
|
|
|
if not dry_run:
|
2024-08-05 23:05:44 +00:00
|
|
|
with open(pydantic_file, "w") as pfile:
|
2023-09-14 09:45:01 +00:00
|
|
|
pfile.write(gen_pydantic)
|
|
|
|
|
2024-08-05 23:05:44 +00:00
|
|
|
|
|
|
|
def generate_versions(
|
|
|
|
yaml_path: Path,
|
|
|
|
pydantic_path: Path,
|
|
|
|
dry_run: bool = False,
|
|
|
|
repo: GitRepo = NWB_CORE_REPO,
|
|
|
|
hdmf_only=False,
|
2024-08-06 01:41:38 +00:00
|
|
|
pdb=False,
|
2024-08-05 23:05:44 +00:00
|
|
|
):
|
2023-09-14 09:45:01 +00:00
|
|
|
"""
|
|
|
|
Generate linkml models for all versions
|
|
|
|
"""
|
2024-08-05 23:05:44 +00:00
|
|
|
# repo.clone(force=True)
|
2023-09-14 09:45:01 +00:00
|
|
|
repo.clone()
|
|
|
|
|
|
|
|
# use a directory underneath this one as the temporary directory rather than
|
|
|
|
# the default hidden one
|
2024-08-05 23:05:44 +00:00
|
|
|
tmp_dir = Path(__file__).parent / "__tmp__"
|
2023-09-14 09:45:01 +00:00
|
|
|
if tmp_dir.exists():
|
|
|
|
shutil.rmtree(tmp_dir)
|
|
|
|
tmp_dir.mkdir()
|
|
|
|
|
|
|
|
linkml_provider = LinkMLProvider(path=tmp_dir, verbose=False)
|
|
|
|
pydantic_provider = PydanticProvider(path=tmp_dir, verbose=False)
|
|
|
|
|
|
|
|
failed_versions = {}
|
|
|
|
|
|
|
|
overall_progress = Progress()
|
2024-08-05 23:05:44 +00:00
|
|
|
overall_task = overall_progress.add_task("All Versions", total=len(NWB_CORE_REPO.versions))
|
2023-09-14 09:45:01 +00:00
|
|
|
|
|
|
|
build_progress = Progress(
|
2024-08-05 23:05:44 +00:00
|
|
|
TextColumn(
|
|
|
|
"[bold blue]{task.fields[name]} - [bold green]{task.fields[action]}",
|
|
|
|
table_column=Column(ratio=1),
|
|
|
|
),
|
|
|
|
BarColumn(table_column=Column(ratio=1), bar_width=None),
|
2023-09-14 09:45:01 +00:00
|
|
|
)
|
|
|
|
panel = Panel(Group(build_progress, overall_progress))
|
|
|
|
|
2024-07-09 04:37:02 +00:00
|
|
|
try:
|
|
|
|
with Live(panel) as live:
|
|
|
|
# make pbar tasks
|
|
|
|
linkml_task = None
|
|
|
|
pydantic_task = None
|
|
|
|
|
2024-07-31 08:13:31 +00:00
|
|
|
for version in repo.namespace.versions:
|
2024-07-09 04:37:02 +00:00
|
|
|
# build linkml
|
|
|
|
try:
|
|
|
|
# check out the version (this should also refresh the hdmf-common schema)
|
2024-08-05 23:05:44 +00:00
|
|
|
linkml_task = build_progress.add_task(
|
|
|
|
"", name=version, action="Checkout Version", total=3
|
|
|
|
)
|
2024-07-09 04:37:02 +00:00
|
|
|
repo.tag = version
|
|
|
|
build_progress.update(linkml_task, advance=1, action="Load Namespaces")
|
|
|
|
|
|
|
|
# first load the core namespace
|
|
|
|
core_ns = io.load_namespace_adapter(repo.namespace_file)
|
2024-07-31 08:13:31 +00:00
|
|
|
if repo.namespace == NWB_CORE_REPO:
|
|
|
|
# then the hdmf-common namespace
|
2024-08-05 23:05:44 +00:00
|
|
|
hdmf_common_ns = io.load_namespace_adapter(
|
|
|
|
repo.temp_directory / "hdmf-common-schema" / "common" / "namespace.yaml"
|
|
|
|
)
|
2024-07-31 08:13:31 +00:00
|
|
|
core_ns.imported.append(hdmf_common_ns)
|
|
|
|
|
2024-07-09 04:37:02 +00:00
|
|
|
build_progress.update(linkml_task, advance=1, action="Build LinkML")
|
|
|
|
|
|
|
|
linkml_res = linkml_provider.build(core_ns)
|
|
|
|
build_progress.update(linkml_task, advance=1, action="Built LinkML")
|
|
|
|
|
|
|
|
# build pydantic
|
2024-07-31 08:13:31 +00:00
|
|
|
ns_files = [res.namespace for res in linkml_res.values()]
|
2024-07-09 04:37:02 +00:00
|
|
|
|
2024-08-05 23:05:44 +00:00
|
|
|
pydantic_task = build_progress.add_task(
|
|
|
|
"", name=version, action="", total=len(ns_files)
|
|
|
|
)
|
2024-07-30 00:34:28 +00:00
|
|
|
for schema in ns_files:
|
2024-08-05 23:05:44 +00:00
|
|
|
pbar_string = schema.parts[-3]
|
2024-07-09 04:37:02 +00:00
|
|
|
build_progress.update(pydantic_task, action=pbar_string)
|
|
|
|
pydantic_provider.build(schema, versions=core_ns.versions, split=True)
|
|
|
|
build_progress.update(pydantic_task, advance=1)
|
2024-08-05 23:05:44 +00:00
|
|
|
build_progress.update(pydantic_task, action="Built Pydantic")
|
2024-07-09 04:37:02 +00:00
|
|
|
|
|
|
|
except Exception as e:
|
2024-08-06 01:41:38 +00:00
|
|
|
if pdb:
|
|
|
|
live.stop()
|
|
|
|
post_mortem()
|
|
|
|
sys.exit(1)
|
|
|
|
|
2023-09-14 09:45:01 +00:00
|
|
|
build_progress.stop_task(linkml_task)
|
2024-07-09 04:37:02 +00:00
|
|
|
if linkml_task is not None:
|
2024-08-05 23:05:44 +00:00
|
|
|
build_progress.update(linkml_task, action="[bold red]LinkML Build Failed")
|
2024-07-09 04:37:02 +00:00
|
|
|
build_progress.stop_task(linkml_task)
|
|
|
|
if pydantic_task is not None:
|
2024-08-05 23:05:44 +00:00
|
|
|
build_progress.update(pydantic_task, action="[bold red]LinkML Build Failed")
|
2024-07-09 04:37:02 +00:00
|
|
|
build_progress.stop_task(pydantic_task)
|
|
|
|
failed_versions[version] = traceback.format_exception(e)
|
|
|
|
|
|
|
|
finally:
|
|
|
|
overall_progress.update(overall_task, advance=1)
|
|
|
|
linkml_task = None
|
|
|
|
pydantic_task = None
|
|
|
|
|
|
|
|
if not dry_run:
|
2024-07-31 08:13:31 +00:00
|
|
|
if hdmf_only:
|
2024-08-05 23:05:44 +00:00
|
|
|
shutil.rmtree(yaml_path / "linkml" / "hdmf_common")
|
|
|
|
shutil.rmtree(yaml_path / "linkml" / "hdmf_experimental")
|
|
|
|
shutil.rmtree(pydantic_path / "pydantic" / "hdmf_common")
|
|
|
|
shutil.rmtree(pydantic_path / "pydantic" / "hdmf_experimental")
|
|
|
|
shutil.move(tmp_dir / "linkml" / "hdmf_common", yaml_path / "linkml")
|
|
|
|
shutil.move(tmp_dir / "linkml" / "hdmf_experimental", yaml_path / "linkml")
|
|
|
|
shutil.move(tmp_dir / "pydantic" / "hdmf_common", pydantic_path / "pydantic")
|
|
|
|
shutil.move(tmp_dir / "pydantic" / "hdmf_experimental", pydantic_path / "pydantic")
|
2024-07-31 08:13:31 +00:00
|
|
|
else:
|
2024-08-05 23:05:44 +00:00
|
|
|
shutil.rmtree(yaml_path / "linkml")
|
|
|
|
shutil.rmtree(pydantic_path / "pydantic")
|
|
|
|
shutil.move(tmp_dir / "linkml", yaml_path)
|
|
|
|
shutil.move(tmp_dir / "pydantic", pydantic_path)
|
2024-07-09 04:37:02 +00:00
|
|
|
|
|
|
|
# import the most recent version of the schemaz we built
|
2024-08-05 23:05:44 +00:00
|
|
|
latest_version = sorted(
|
|
|
|
(pydantic_path / "pydantic" / "core").iterdir(), key=os.path.getmtime
|
|
|
|
)[-1]
|
2024-07-09 04:37:02 +00:00
|
|
|
|
|
|
|
# make inits to use the schema! we don't usually do this in the
|
|
|
|
# provider class because we directly import the files there.
|
2024-08-05 23:05:44 +00:00
|
|
|
with open(pydantic_path / "pydantic" / "__init__.py", "w") as initfile:
|
|
|
|
initfile.write(" ")
|
2024-07-09 04:37:02 +00:00
|
|
|
|
2024-08-05 23:05:44 +00:00
|
|
|
with open(pydantic_path / "__init__.py", "w") as initfile:
|
|
|
|
initfile.write(f"from .pydantic.core.{latest_version.name}.namespace import *")
|
2024-07-09 04:37:02 +00:00
|
|
|
|
2024-08-07 04:40:23 +00:00
|
|
|
subprocess.run(["black", "."])
|
|
|
|
|
2024-07-09 04:37:02 +00:00
|
|
|
finally:
|
|
|
|
if len(failed_versions) > 0:
|
2024-08-05 23:05:44 +00:00
|
|
|
print("Failed Building Versions:")
|
2024-07-09 04:37:02 +00:00
|
|
|
print(failed_versions)
|
2023-09-14 09:45:01 +00:00
|
|
|
|
|
|
|
|
2023-08-25 07:22:47 +00:00
|
|
|
def parser() -> ArgumentParser:
|
2024-08-05 23:05:44 +00:00
|
|
|
parser = ArgumentParser("Generate all available versions of NWB core schema")
|
2023-08-25 07:22:47 +00:00
|
|
|
parser.add_argument(
|
2024-08-05 23:05:44 +00:00
|
|
|
"--yaml",
|
2023-08-25 07:22:47 +00:00
|
|
|
help="directory to export linkML schema to",
|
|
|
|
type=Path,
|
2024-08-05 23:05:44 +00:00
|
|
|
default=Path(__file__).parent.parent / "nwb_linkml" / "src" / "nwb_linkml" / "schema",
|
2023-08-25 07:22:47 +00:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
2024-08-05 23:05:44 +00:00
|
|
|
"--pydantic",
|
2023-08-25 07:22:47 +00:00
|
|
|
help="directory to export pydantic models",
|
|
|
|
type=Path,
|
2024-08-05 23:05:44 +00:00
|
|
|
default=Path(__file__).parent.parent / "nwb_linkml" / "src" / "nwb_linkml" / "models",
|
2024-07-31 08:13:31 +00:00
|
|
|
)
|
2024-08-05 23:05:44 +00:00
|
|
|
parser.add_argument("--hdmf", help="Only generate the HDMF namespaces", action="store_true")
|
2023-09-14 09:45:01 +00:00
|
|
|
parser.add_argument(
|
2024-08-05 23:05:44 +00:00
|
|
|
"--latest",
|
2023-09-14 09:45:01 +00:00
|
|
|
help="Only generate the latest version of the core schemas.",
|
2024-08-05 23:05:44 +00:00
|
|
|
action="store_true",
|
2023-09-14 09:45:01 +00:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
2024-08-05 23:05:44 +00:00
|
|
|
"--dry-run",
|
|
|
|
help=(
|
|
|
|
"Generate schema and pydantic models without moving them into the target directories,"
|
|
|
|
" for testing purposes"
|
|
|
|
),
|
|
|
|
action="store_true",
|
2023-09-14 09:45:01 +00:00
|
|
|
)
|
2024-08-06 01:41:38 +00:00
|
|
|
parser.add_argument("--pdb", help="Launch debugger on an error", action="store_true")
|
2023-08-25 07:22:47 +00:00
|
|
|
return parser
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
args = parser().parse_args()
|
2024-07-31 08:13:31 +00:00
|
|
|
if args.hdmf:
|
|
|
|
repo = GitRepo(HDMF_COMMON_REPO)
|
|
|
|
else:
|
|
|
|
repo = GitRepo(NWB_CORE_REPO)
|
|
|
|
|
2023-09-14 09:45:01 +00:00
|
|
|
if not args.dry_run:
|
|
|
|
args.yaml.mkdir(exist_ok=True)
|
|
|
|
args.pydantic.mkdir(exist_ok=True)
|
|
|
|
if args.latest:
|
2024-07-31 08:13:31 +00:00
|
|
|
generate_core_yaml(args.yaml, args.dry_run, args.hdmf)
|
2023-09-14 09:45:01 +00:00
|
|
|
generate_core_pydantic(args.yaml, args.pydantic, args.dry_run)
|
|
|
|
else:
|
2024-08-06 01:41:38 +00:00
|
|
|
generate_versions(args.yaml, args.pydantic, args.dry_run, repo, args.hdmf, pdb=args.pdb)
|
2023-08-25 07:22:47 +00:00
|
|
|
|
2024-08-05 23:05:44 +00:00
|
|
|
|
2023-08-25 07:22:47 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|