-
Notifications
You must be signed in to change notification settings - Fork 1
/
api_gen.py
74 lines (59 loc) · 2.32 KB
/
api_gen.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
"""Script to generate public APIs in the `keras_rs/api` directory.
Usage:
Run via `./shell/api_gen.sh`.
It generates API and formats user and generated APIs.
"""
import os
import shutil
import namex
package = "keras_rs"
def ignore_files(_: str, filenames: list[str]) -> list[str]:
return [f for f in filenames if f.endswith("_test.py")]
def copy_source_to_build_directory(root_path: str) -> str:
# Copy sources (`keras_rs/` dir and setup files) to build dir.
build_dir = os.path.join(root_path, "tmp_build_dir")
if os.path.exists(build_dir):
shutil.rmtree(build_dir)
os.mkdir(build_dir)
shutil.copytree(
package, os.path.join(build_dir, package), ignore=ignore_files
)
return build_dir
def export_version_string(api_init_fname: str) -> None:
with open(api_init_fname) as f:
contents = f.read()
with open(api_init_fname, "w") as f:
contents += "from keras_rs.src.version_utils import __version__\n"
f.write(contents)
def build() -> None:
# Backup the `keras_rs/__init__.py` and restore it on error.
root_path = os.path.dirname(os.path.abspath(__file__))
code_api_dir = os.path.join(root_path, package, "api")
# Create temp build dir
build_dir = copy_source_to_build_directory(root_path)
build_api_dir = os.path.join(build_dir, package, "api")
build_init_fname = os.path.join(build_dir, package, "__init__.py")
build_api_init_fname = os.path.join(build_api_dir, "__init__.py")
try:
os.chdir(build_dir)
# Generates `keras_rs/api` directory.
if os.path.exists(build_api_dir):
shutil.rmtree(build_api_dir)
if os.path.exists(build_init_fname):
os.remove(build_init_fname)
os.makedirs(build_api_dir)
namex.generate_api_files(
"keras_rs", code_directory="src", target_directory="api"
)
# Add __version__ to keras_rs package.
export_version_string(build_api_init_fname)
# Copy back the keras_rs/api and
# keras_rs/__init__.py from build dir.
if os.path.exists(code_api_dir):
shutil.rmtree(code_api_dir)
shutil.copytree(build_api_dir, code_api_dir)
finally:
# Clean up: remove the build directory (no longer needed).
shutil.rmtree(build_dir)
if __name__ == "__main__":
build()