forked from pyinfra-dev/pyinfra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_arguments_doc.py
executable file
·91 lines (69 loc) · 2.4 KB
/
generate_arguments_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
#!/usr/bin/env python
import sys
from inspect import cleandoc
from os import path
from typing import get_type_hints
from pyinfra.api import Config
from pyinfra.api.arguments import AllArguments, __argument_docs__
from pyinfra.api.host import Host
from pyinfra.api.operation import OperationMeta
sys.path.append(".")
from docs.utils import title_line # noqa: E402
def build_arguments_doc():
pyinfra_config = Config()
this_dir = path.dirname(path.realpath(__file__))
docs_dir = path.abspath(path.join(this_dir, "..", "docs"))
lines = []
# Extend locals with hidden (behind TYPE_CHECKING) imports in the arguments module
locals_ = locals()
locals_["Host"] = Host
locals_["OperationMeta"] = OperationMeta
all_arguments = get_type_hints(AllArguments)
for group_name, (
arguments_meta,
arguments_title_doc,
arguments_example_doc,
) in __argument_docs__.items():
lines.append("\n{0}".format(group_name))
lines.append(title_line("~", group_name))
lines.append("")
if arguments_title_doc:
lines.append(cleandoc(arguments_title_doc))
lines.append(
""".. list-table::
:header-rows: 1
:widths: 25 45 15 15
* - Key
- Description
- Type
- Default"""
)
for key, meta in arguments_meta.items():
default = meta.default
if callable(default):
default = default(pyinfra_config)
default = "" if default is None else f"``{default}``"
type_ = all_arguments[key]
type_name = type_.__name__
if hasattr(type_, "__args__"):
type_args = ", ".join([arg.__name__ for arg in type_.__args__])
type_name = f"{type_name}[{type_args}]"
lines.append(
f""" * - ``{key}``
- {meta.description}
- ``{type_name}``
- {default}
"""
)
if arguments_example_doc:
lines.append("**Examples:**")
lines.append("")
lines.append(cleandoc(arguments_example_doc))
module_filename = path.join(docs_dir, "_deploy_globals.rst")
print("--> Writing {0}".format(module_filename))
out = "\n".join(lines)
with open(module_filename, "w", encoding="utf-8") as outfile:
outfile.write(out)
if __name__ == "__main__":
print("### Building arguments doc")
build_arguments_doc()