-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathgenerate_doc.py
110 lines (76 loc) · 2.56 KB
/
generate_doc.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
from __future__ import annotations
from pathlib import Path
from rich import print
code_src = Path(__file__).parent.parent.joinpath("src")
doc_src = Path(__file__).parent.joinpath("source")
bidspm_file = doc_src.joinpath("API.rst")
dir_ignore_list = ("__pycache__", "bidspm.egg-info", "workflows", "batches")
file_ignore_list = "BidsModel"
def return_title(path: Path, level=1):
tmp = f"{path.name}"
tmp.replace("_", " ")
if level == 1:
string = "="
if level > 1:
string = "-"
title = f"\n{tmp}\n"
title += string * len(tmp) + "\n"
return title
def append_dir_content(
path: Path, content: str, parent_folder=None, recursive=False, level=1
):
if not path.is_dir():
return content
m_files = sorted(list(path.glob("*.m")))
title = return_title(path=path, level=level)
content += title
for file in m_files:
if file.stem in file_ignore_list:
continue
if parent_folder is None:
function_name = f"src.{path.name}.{file.stem}"
else:
function_name = f"src.{parent_folder}.{path.name}.{file.stem}"
content += f".. autofunction:: {function_name}\n"
print(function_name)
if recursive and path.is_dir():
print(path)
for subpath in path.iterdir():
content = append_dir_content(
subpath,
content,
parent_folder=path.name,
recursive=recursive,
level=level + 1,
)
return content
def update_content(old_content, f):
for line in old_content:
if line.startswith(".. AUTOMATICALLY GENERATED"):
break
print(line.strip("\n"), file=f)
content = """.. AUTOMATICALLY GENERATED
"""
content = append_dir_content(
code_src.joinpath("workflows"), content, parent_folder=None, recursive=True
)
content = append_dir_content(
code_src.joinpath("batches"), content, parent_folder=None, recursive=True
)
subfolders = sorted(list(code_src.iterdir()))
for path in subfolders:
if path.name in dir_ignore_list:
continue
if path.is_dir():
content = append_dir_content(
path, content, parent_folder=None, recursive=True
)
print(content, file=f)
# print(content)
def main():
with bidspm_file.open("r", encoding="utf8") as f:
old_content = f.readlines()
with bidspm_file.open("w", encoding="utf8") as f:
update_content(old_content, f)
if __name__ == "__main__":
main()