mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
87 lines
2.2 KiB
Python
87 lines
2.2 KiB
Python
import os
|
|
import sys
|
|
from pathlib import Path
|
|
import json
|
|
|
|
TMP_FILE = "./missing_init_files.json"
|
|
|
|
|
|
def add_missing_init_files(*roots):
|
|
"""
|
|
This function takes in one or more root directories as arguments and scans
|
|
them for Python files without an `__init__.py` file. It generates a JSON
|
|
file named `missing_init_files.json` containing the paths of these files.
|
|
|
|
Args:
|
|
*roots: Variable number of root directories to scan.
|
|
|
|
Returns:
|
|
None
|
|
"""
|
|
nfiles = []
|
|
|
|
for root in roots:
|
|
for dirpath, dirs, files in os.walk(root):
|
|
if "__init__.py" in files:
|
|
continue
|
|
else:
|
|
Path(f"{dirpath}/__init__.py").touch()
|
|
nfiles.append(f"{dirpath}/__init__.py")
|
|
sys.stdout.write(
|
|
"\r\x1b[K" + f"PRE-BUILD: created {len(nfiles)} "
|
|
"temp '__init__.py' files"
|
|
)
|
|
sys.stdout.flush()
|
|
|
|
with open(TMP_FILE, "w") as f:
|
|
json.dump(nfiles, f)
|
|
|
|
sys.stdout.write("\n")
|
|
sys.stdout.flush()
|
|
|
|
|
|
def remove_missing_init_files():
|
|
"""
|
|
This function removes temporary `__init__.py` files created in the
|
|
`add_missing_init_files()` function. It reads the paths of these files from
|
|
a JSON file named `missing_init_files.json`.
|
|
|
|
Args:
|
|
None
|
|
|
|
Returns:
|
|
None
|
|
"""
|
|
with open(TMP_FILE, "r") as f:
|
|
nfiles = json.load(f)
|
|
|
|
for file in nfiles:
|
|
Path(file).unlink()
|
|
sys.stdout.write(
|
|
"\r\x1b[K" + f"POST_BUILD: removed {len(nfiles)} "
|
|
"temp '__init__.py' files"
|
|
)
|
|
sys.stdout.flush()
|
|
|
|
os.remove(TMP_FILE)
|
|
|
|
sys.stdout.write("\n")
|
|
sys.stdout.flush()
|
|
|
|
|
|
def on_pre_build(config):
|
|
"""
|
|
This function is called before the MkDocs build process begins. It adds
|
|
temporary `__init__.py` files to directories that do not contain one, to
|
|
make sure mkdocs doesn't ignore them.
|
|
"""
|
|
add_missing_init_files("client", "server", "tests")
|
|
|
|
|
|
def on_post_build(config):
|
|
"""
|
|
This function is called after the MkDocs build process ends. It removes
|
|
temporary `__init__.py` files that were added in the `on_pre_build()`
|
|
function.
|
|
"""
|
|
remove_missing_init_files()
|