-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathauto_doc.py
212 lines (166 loc) · 6.66 KB
/
auto_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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
from __future__ import annotations
import importlib
import inspect
import re
from pathlib import Path
from bx_py_utils.filename_matcher import filename_matcher
from bx_py_utils.string_utils import startswith_prefixes
try:
from pdoc import extract
from pdoc.doc import Module
except ImportError as err:
_pdoc_import_error = err
else:
_pdoc_import_error = None
from bx_py_utils.path import assert_is_file
from bx_py_utils.test_utils.assertion import assert_text_equal
class ModulePath:
def __init__(self):
self.cache = {}
def get_base_path(self, module_name):
base_module = module_name.partition('.')[0]
if base_module not in self.cache:
module = importlib.import_module(base_module)
module_path = Path(module.__file__).parent
self.cache[base_module] = module_path
return module_path
return self.cache[base_module]
def get_code_location(obj):
"""
Return start and end line number for an object via inspect.
"""
lines, start = inspect.getsourcelines(obj)
return start, start + len(lines) - 1
def generate_modules_doc(
modules,
exclude_func: callable = None,
exclude_prefixes: tuple[str, ...] = (),
start_level=1,
link_template=None,
):
"""
Generate a list of function/class information via pdoc.
:param modules: module specifications for pdoc.extract.walk_specs()
:param exclude_func: A callable to filter the files
:param exclude_prefixes: Exclude all DocStrings started with one of these prefixes
:param start_level: Markdown "#" min. count
:param link_template: String that can generate a URL with: {path}, {start}, {end} placeholder
"""
if link_template and 'lnum' in link_template:
raise AssertionError('Please change "lnum" in "link_template" to {start}, {end}')
if _pdoc_import_error is not None:
raise ImportError(f'{_pdoc_import_error} (Hint: Install "pdoc" package)')
def first_doc_line(doc_string):
try:
return doc_string.splitlines()[0]
except IndexError:
return None
def get_doc_list(pdoc_list, root_path):
for pdoc_item in sorted(pdoc_list):
item_name = pdoc_item.name
if item_name.startswith('_'):
continue
item_doc_line = first_doc_line(pdoc_item.docstring)
if not item_doc_line:
continue
if startswith_prefixes(item_doc_line, prefixes=exclude_prefixes):
continue
item_name = f'`{item_name}()`'
if link_template:
item_path = Path(pdoc_item.source_file)
path = item_path.relative_to(root_path)
start, end = get_code_location(obj=pdoc_item.obj)
link = link_template.format(
path=path,
start=start,
end=end,
)
item_name = f'[{item_name}]({link})'
yield f'* {item_name} - {item_doc_line}\n'
module_path = ModulePath()
module_names = extract.walk_specs(modules)
parts = []
for module_name in sorted(module_names):
module_obj = extract.load_module(module_name)
if exclude_func is not None and not exclude_func(module_obj.__file__):
# This file should be excluded
continue
base_path = module_path.get_base_path(module_name=module_name)
module_root_path = base_path.parent
pdoc_module = Module(module_obj)
# Collect information
module_doc_line = first_doc_line(pdoc_module.docstring)
if startswith_prefixes(module_doc_line, prefixes=exclude_prefixes):
continue
class_docs = list(get_doc_list(pdoc_list=pdoc_module.classes, root_path=module_root_path))
func_docs = list(get_doc_list(pdoc_list=pdoc_module.functions, root_path=module_root_path))
# Generate output only if information exists:
if module_doc_line or class_docs or func_docs:
level = module_name.count('.') + start_level
parts.append(f'\n{"#" * level} {module_name}\n\n')
if module_doc_line:
parts.append(f'{module_doc_line}\n\n')
parts.extend(class_docs)
parts.extend(func_docs)
return ''.join(parts)
def assert_readme_block(
readme_path: Path,
text_block: str,
start_marker_line: str = '[comment]: <> (✂✂✂ auto generated start ✂✂✂)',
end_marker_line: str = '[comment]: <> (✂✂✂ auto generated end ✂✂✂)',
):
"""
Check and update README file: Asset that "text_block" is present between the markers.
"""
assert_is_file(readme_path)
old_readme = readme_path.read_text()
assert (
start_marker_line in old_readme
), f'Start marker {start_marker_line!r} not found in: {readme_path}'
assert (
end_marker_line in old_readme
), f'End marker {end_marker_line!r} not found in: {readme_path}'
doc_block = f'{start_marker_line}\n{text_block}\n{end_marker_line}'
start = re.escape(start_marker_line)
end = re.escape(end_marker_line)
new_readme, sub_count = re.subn(f'{start}(.*?){end}', doc_block, old_readme, flags=re.DOTALL)
assert sub_count == 1
if old_readme != new_readme:
readme_path.write_text(new_readme)
# display error message with diff:
assert_text_equal(old_readme, new_readme)
def assert_readme(
readme_path: Path,
modules: list,
exclude_func: callable = None,
exclude_prefixes: tuple[str, ...] = (), # Exclude all DocStrings started with one of these prefixes
start_marker_line: str = '[comment]: <> (✂✂✂ auto generated start ✂✂✂)',
end_marker_line: str = '[comment]: <> (✂✂✂ auto generated end ✂✂✂)',
start_level: int = 1,
link_template: str | None = None,
):
"""
Check and update README file with generate_modules_doc()
The automatic generated documentation list will be "replace" between the given markers.
"""
doc_block = generate_modules_doc(
modules=modules,
exclude_func=exclude_func,
exclude_prefixes=exclude_prefixes,
start_level=start_level,
link_template=link_template,
)
assert_readme_block(
readme_path=readme_path,
text_block=doc_block,
start_marker_line=start_marker_line,
end_marker_line=end_marker_line,
)
class FnmatchExclude:
"""
Helper for auto doc `exclude_func` that exclude files via fnmatch pattern.
"""
def __init__(self, *patterns):
self.patterns = patterns
def __call__(self, file_path: str) -> bool:
return not filename_matcher(patterns=self.patterns, file_path=file_path)