-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathgenerate_module_docs.py
executable file
·419 lines (350 loc) · 16 KB
/
generate_module_docs.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (c) 2018, Niklas Hauser
#
# This file is part of the modm project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# -----------------------------------------------------------------------------
import os, sys, re, shutil
import graphviz as gv
from pathlib import Path
from jinja2 import Environment
from collections import defaultdict
def repopath(path):
return (Path(os.path.abspath(__file__)).parents[2] / path)
def relpath(path):
return os.path.relpath(path, str(repopath(".")))
sys.path.append(str(repopath("ext/modm-devices/tools/generator")))
sys.path.append(str(repopath("ext/modm-devices")))
from dfg.device_tree import DeviceTree
from modm_devices.device_identifier import *
# sys.path.insert(0, str(repopath("../lbuild")))
import lbuild
def get_modules(builder, limit=None):
target_option = builder.parser.find_option(":target")
# Reduce device set a little to keep RAM usage in check
# this should ~half the considered devices
short_targets = set()
targets = []
for d in target_option.values:
if d.startswith("stm32"):
# filter out a few keys
sd = d[:10] + d[13:]
if sd not in short_targets:
targets.append(d)
short_targets.add(sd)
elif d.startswith("at") or d.startswith("sam"):
# filter out package
sd = d.split("-")[0]
if sd not in short_targets:
targets.append(d)
short_targets.add(sd)
else:
targets.append(d)
# We must include all :board module targets for reproducibility!!!
for board in repopath("src/modm/board").glob("*/board.xml"):
target = re.search(r"< *option +name=\"modm:target\" *>(.*?)</ *option *>", board.read_text())
targets.append(target[1])
if limit is not None:
targets = targets[:limit]
targets = sorted(list(set(targets)))
# Prime the repositories and get all module files
mfiles = []
target_option.value = targets[0]
for repo in builder.parser._findall(builder.parser.Type.REPOSITORY):
repo.prepare()
mfiles.extend([(repo, file) for file in repo._module_files])
num_modules = []
num_options = []
print("Querying for {} targets...".format(len(targets)))
mfinal = None
for target in targets:
target_option.value = target
target = target_option.value._identifier
imodules = [m for (repo, mfile) in mfiles for m in lbuild.module.load_module_from_file(repo, mfile)]
imodules = [m for m in imodules if m.available]
imodules = sorted(imodules, key=lambda m: m.fullname.count(":"))
num_modules.append(len(imodules))
print("{}: {}".format(target, len(imodules)))
modules = {"modm": DeviceTree("modm", target)}
modules["modm"].addSortKey(lambda mo: (mo.name, mo["filename"]))
for init in imodules:
if init.name.startswith("__"): continue
if init.name.isdigit(): continue;
m = modules[init.parent].addChild(init.fullname.split(":")[-1])
modules[init.fullname] = m
m.addSortKey(lambda mo: (mo.name, m["filename"], mo.get("value", ""), mo.get("option", "")))
m.setAttribute("type", "Module")
m.setAttribute("filename", relpath(init.filename))
m.setAttribute("_description", init.description)
for d in init._dependencies:
dep = m.addChild("dependency")
dep.setValue(("modm" + d).replace("modmmodm", "modm"))
num_options.append(len(init._options))
for o in init._options:
if o.name.startswith("__"): continue
op = m.addChild(o.fullname.split(":")[-1])
op.addSortKey(lambda oo: (oo.name, oo["type"], oo.get("value", "")))
op.setAttribute("type", type(o).__name__)
op.setAttribute("_description", o._description)
opval = op.addChild("default")
opval.setValue(o.format_value())
opvals = op.addChild("inputs")
opvals.setValue(o.format_values())
if o._dependency_handler:
for valin in o.values:
valout = lbuild.utils.listify(o._dependency_handler(o._in(valin)))
if len(valout):
opdep = op.addChild("dependency")
vconcat = ", ".join(("modm" + v).replace("modmmodm", "modm") for v in valout)
if len(valout) == 1:
opdep.setValue("{} -> {}".format(valin, vconcat))
else:
opdep.setValue("{} -> [{}]".format(valin, vconcat))
for c in init._collectors:
if c.name.startswith("__"): continue
cp = m.addChild(c.fullname.split(":")[-1])
cp.addSortKey(lambda cc: (cc.name))
cp.setAttribute("type", type(c).__name__)
cp.setAttribute("_description", c._description)
opvals = cp.addChild("inputs")
opvals.setValue(c.format_values())
for q in init._queries:
if q.name.startswith("__"): continue
qp = m.addChild(q.fullname.split(":")[-1])
qp.addSortKey(lambda qq: (qq.name))
qp.setAttribute("type", type(q).__name__)
qp.setAttribute("_description", q._description)
if mfinal is None:
mfinal = modules["modm"]
else:
mfinal.merge(modules["modm"])
print("Sorting module tree...")
mfinal._sortTree()
return mfinal, (num_modules, num_options)
def split_description(descr):
if descr is None: return "", "";
lines = descr.strip(" \n").splitlines() + [""]
return lines[0].replace("#", "").strip(), "\n".join(lines[1:])
def extract(text, key):
return re.search(r"# {0}\n(.*?)\n# /{0}".format(key), text, flags=re.DOTALL | re.MULTILINE).group(1)
def replace(text, key, content):
return re.sub(r"# {0}.*?# /{0}".format(key), "# {0}\n{1}\n# /{0}".format(key, content), text, flags=re.DOTALL | re.MULTILINE)
def url_name(name):
for c in ":.,/ ({": name = name.replace(c, "-");
for c in "})": name = name.replace(c, "");
return name
def ref_name(name):
return url_name(name).replace("-", "_")
def node_name(name):
return name.replace(":", ":\n")
def get_platform_families(mids):
dids = defaultdict(set)
for did in mids:
dids[did.platform].add(did.family)
return dids
all_dids = None
all_targets = None
def target_diff(targets, compare=None):
global all_dids, all_targets
if all_dids is None:
all_dids = get_platform_families(all_targets)
if compare is None:
compare = all_targets
if compare == targets:
return ""
if len(targets) == 1:
return list(targets.ids)[0].string
output = []
for p, fs in get_platform_families(targets).items():
if fs != all_dids[p]:
if len(fs) == 1:
p += list(fs)[0]
else:
p += "{" + ",".join(sorted(fs)) + "}"
output.append(p)
return ", ".join(sorted(set(output)))
def render_dependency_graphs(node):
graph = gv.Digraph(name=node["name"],
format="svg",
graph_attr={"rankdir": "BT", "bgcolor": "transparent", "class": "deps"},
node_attr={"style": "filled,solid", "shape": "box"})
graph.node(ref_name(node["name"]), node_name(node["name"]), style="filled,bold")
for mod in sorted(node["dependencies"].keys()):
graph.node(ref_name(mod), node_name(mod),
style="filled" if node["dependencies"][mod] else "filled,dashed")
graph.edge(ref_name(node["name"]), ref_name(mod),
style="solid" if node["dependencies"][mod] else "dashed")
svg = graph.pipe().decode("utf-8")
# We need to remove html comments from this output or mkdocs does not parse correctly
svg = re.sub(r"<!--.*?-->\n", "", svg, flags=re.DOTALL | re.MULTILINE)
# Invert the graph for dark mode
svg = svg.replace("<svg ", '<svg class="deps" ')
svg += "<style>@media(prefers-color-scheme:dark){" \
"svg.deps{filter:invert(100%);}}</style>"
return svg
def format_module(modules, node):
fullname = node.name
nname = node.parent
while(nname):
fullname = "{}:{}".format(nname.name, fullname)
nname = nname.parent
# ident = node.ids.string if (node.parent and node.parent.ids != node.ids) else ""
title, descr = split_description(node["_description"])
mprops = {
"name": fullname,
"title": title,
"description": descr,
"targets": target_diff(node.ids, compare=node.parent.ids),
"is_limited": node.ids != all_targets,
"url": url_name(fullname),
"dependencies": {},
"options": [], "collectors": [], "queries": []
}
for child in node.children:
ctype = child.get("type", "")
if child.name == "dependency":
mprops["dependencies"][child["value"]] = (child.ids == node.ids)
elif "Option" in ctype:
op = {"name": child.name,
"description": child["_description"].strip().strip("#").strip(),
"targets": target_diff(child.ids, compare=node.ids),
"default": {c["value"]: target_diff(c.ids, compare=child.ids) for c in child.children if c.name == "default"},
"inputs": {c["value"]: target_diff(c.ids, compare=child.ids) for c in child.children if c.name == "inputs"},
"dependencies": {c["value"]: target_diff(c.ids, compare=child.ids) for c in child.children if c.name == "dependency"},
}
# print(fullname, op["dependencies"])
for name, targets in op["dependencies"].items():
name = name.split("-> ")[1]
mprops["dependencies"][name] = mprops["dependencies"].get(name, False)
mprops["options"].append(op)
elif "Collector" in ctype:
op = {"name": child.name,
"description": child["_description"].strip().strip("#").strip(),
"targets": target_diff(child.ids, compare=node.ids),
"inputs": {c["value"]: target_diff(c.ids, compare=child.ids) for c in child.children if c.name == "inputs"},
}
mprops["collectors"].append(op)
elif "Query" in ctype:
op = {"name": child.name,
"description": child["_description"].strip().strip("#").strip(),
"targets": target_diff(child.ids, compare=node.ids),
}
mprops["queries"].append(op)
mprops["graph"] = render_dependency_graphs(mprops)
modules[fullname].append(mprops)
print(".", end ="", flush=True)
for child in [c for c in node.children if "filename" in c]:
format_module(modules, child)
def format_config(configs, node):
title, descr = split_description(str(node._description))
name = node.fullname
if node._default:
name += ":" + node._default
def _fmt(path):
text = Path(path).read_text().strip()
# Remove repositories tag, as it's a detail that's always the same
text = re.sub(r" +<repositories>.*?</repositories>.*?\n <o", " <o", text, flags=re.S|re.M)
text = text.replace("\n\n", "\n")
return text
mprops = {
"name": name,
"title": title,
"description": descr,
"url": url_name(node.fullname),
"configs": {v:_fmt(p) for v, p in node._enumeration.items()},
"default": node._default,
"revisions": node.format_values(),
}
configs[node.fullname] = mprops
if __name__ == "__main__":
config_path = Path(repopath("docs/mkdocs.yml"))
env = Environment()
env.line_statement_prefix = '%%'
env.line_comment_prefix = '%#'
# lbuild.logger.configure_logger(2)
lbuild.format.PLAIN = True
builder = lbuild.api.Builder()
builder._load_repositories(repopath("repo.lb"))
print("Formatting targets")
targets = defaultdict(lambda: defaultdict(lambda: defaultdict(list)))
otarget = builder.parser.find_option(":target")
for target in otarget.values:
if target.startswith("stm32"):
targets["STMicroelectronics STM32"][target[:7].upper()][target[:9].upper()].append(target)
elif target.startswith("sam"):
targets["Microchip SAM"][target[:4].upper()][target[:6].upper()].append(target)
elif target.startswith("at90"):
targets["Microchip AVR"][target[:4].upper()][target[:7].upper()].append(target)
elif target.startswith("at"):
family = target[:2].upper()+target[2:6]
name = "".join(c for c in target[6:10] if c.isnumeric())
targets["Microchip AVR"][family][family+name].append(target)
elif target.startswith("hosted"):
targets["Hosted OS"][""][""].append(target)
elif target.startswith("rp"):
targets["Raspberry Pi"][""][""].append(target)
targets = {
"targets": targets,
"total": len(otarget.values),
"description": split_description(str(otarget._description))[1]
}
print("Writing targets")
rendered = env.from_string(repopath("docs/targets.md.in").read_text()).render(targets)
(repopath("docs/src/reference") / "targets.md").write_text(rendered)
print("Formatting configs")
configs = {}
for config in builder.parser.configurations:
format_config(configs, config)
print("Writing {} configs".format(len(configs)))
config_dir = repopath("docs/src/reference/config/")
shutil.rmtree(config_dir, ignore_errors=True)
config_dir.mkdir()
conftable = []
for name, config in configs.items():
url = url_name(name)
rendered = env.from_string(repopath("docs/config.md.in").read_text()).render({"config": config})
(config_dir / "{}.md".format(url)).write_text(rendered)
conftable.append(" - \"{}\": \"reference/config/{}.md\"".format(name.replace("modm:", ":"), url))
print("Writing config table")
conftable = "\n".join([" - Configurations:"] + sorted(conftable))
config = config_path.read_text()
if extract(config, "configtable") != conftable:
config = replace(config, "configtable", conftable)
config_path.write_text(config)
if "--no-modules" in sys.argv:
exit(0)
module_tree, mlens = get_modules(builder)
all_targets = module_tree.ids
print(f"Total: {sum(mlens[0])} modules and {sum(mlens[1])} options generated.\n"
f"Between {min(mlens[0])} and {max(mlens[0])} modules per target.\n"
f"Up to {max(mlens[1])} options per module.")
print("Formatting modules", end ="")
modules = defaultdict(list)
for c in module_tree.children:
format_module(modules, c)
print("\nWriting modules", end ="")
module_dir = repopath("docs/src/reference/module/")
shutil.rmtree(module_dir, ignore_errors=True)
module_dir.mkdir()
modtable = []
for name, tmodules in modules.items():
for m in tmodules:
nname = name
url = url_name(nname)
if len(tmodules) > 1:
nname += " ({})".format(m["targets"]);
url += url_name("-" + m["targets"])
rendered = env.from_string(repopath("docs/module.md.in").read_text()).render({"module": m})
(module_dir / "{}.md".format(url)).write_text(rendered)
modtable.append(" - \"{}\": \"reference/module/{}.md\"".format(nname.replace("modm:", ":"), url))
print(".", end ="", flush=True)
print("\nWriting module table")
modtable = "\n".join([" - Modules:"] + sorted(modtable))
config = config_path.read_text()
if extract(config, "moduletable") != modtable:
config = replace(config, "moduletable", modtable)
config_path.write_text(config)