-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathemsm_autodoc.py
218 lines (180 loc) · 5.92 KB
/
emsm_autodoc.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
#!/usr/bin/env python3
# The MIT License (MIT)
#
# Copyright (c) 2014-2018 <see AUTHORS.txt>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
# Modules
# ------------------------------------------------
# std
import os
import sys
# Data
# ------------------------------------------------
DOC_SRC = os.path.dirname(__file__)
EMSM_ROOT = os.path.abspath(os.path.join("../../"))
# Make sure the EMSM packages are found by autodoc.
sys.path.insert(0, EMSM_ROOT)
# Classes
# ------------------------------------------------
class BaseDocGenerator(object):
"""
"""
def __init__(self, source_dir, doc_dir, automodule_conf=None):
"""
"""
self._source_dir = source_dir
self._doc_dir = doc_dir
if automodule_conf is None:
automodule_conf = list()
self._automodule_conf = automodule_conf
return None
def _list_module_paths(self):
"""
"""
raise NotImplemented()
def _generate_rst_file(self, module):
"""
"""
tmp = (":mod:`{module}`",
"="*(9 + len(module)),
"",
".. automodule:: {module}",
""
)
tmp = "\n".join(tmp)
tmp = tmp.format(module=module)
module_name = module[module.rfind(".") + 1:]
doc_filename = module_name if module_name != "index" else "index_"
doc_filename += ".rst"
with open(os.path.join(self._doc_dir, doc_filename), "w") as file:
print(":mod:`{}`".format(module), file=file)
print("="*(9+len(module)), file=file)
print("", file=file)
print(".. automodule:: {}".format(module), file=file)
for option in self._automodule_conf:
print(" :{}:".format(option), file=file)
return None
def _update(self):
"""
"""
modules = self._list_module_paths()
for module in modules:
self._generate_rst_file(module)
return None
def _clear(self):
"""
Removes all *.rst* files in *self._doc_dir* except
the *index.rst* file.
"""
for filename in os.listdir(self._doc_dir):
if not filename.endswith(".rst"):
continue
if filename == "index.rst":
continue
os.remove(os.path.join(self._doc_dir, filename))
return None
def run(self):
"""
"""
self._clear()
self._update()
return None
class PluginDocGenerator(BaseDocGenerator):
"""
"""
def _list_module_paths(self):
"""
"""
def is_plugin(path):
"""
"""
filename = os.path.basename(path)
if not path:
return False
if not os.path.isfile(path):
return False
if not path.endswith(".py"):
return False
if not filename[0].isalnum():
return False
return True
modules = list()
for filename in os.listdir(self._source_dir):
path = os.path.join(self._source_dir, filename)
if not is_plugin(path):
continue
module_name = filename[:filename.find(".")]
module_path = "emsm.plugins." + module_name
modules.append(module_path)
return modules
class APIDocGenerator(BaseDocGenerator):
"""
"""
def __init__(self, source_dir, doc_dir):
"""
"""
super().__init__(
source_dir,
doc_dir,
["members", "undoc-members", "show-inheritance"]
)
return None
def _list_module_paths(self):
"""
"""
def is_python_file(path):
"""
"""
filename = os.path.basename(path)
if not path:
return False
if not os.path.isfile(path):
return False
if not path.endswith(".py"):
return False
if not filename[0].isalnum():
return False
return True
modules = list()
for filename in os.listdir(self._source_dir):
path = os.path.join(self._source_dir, filename)
if not is_python_file(path):
continue
module_name = filename[:filename.find(".")]
module_path = "emsm.core." + module_name
modules.append(module_path)
return modules
# Main
# ------------------------------------------------
def main():
"""
"""
# Generate the documentation for the plugins.
plugin_doc_gen = PluginDocGenerator(
os.path.join(EMSM_ROOT, "emsm", "plugins"),
os.path.join(DOC_SRC, "plugins")
)
plugin_doc_gen.run()
api_doc_gen = APIDocGenerator(
os.path.join(EMSM_ROOT, "emsm", "core"),
os.path.join(DOC_SRC, "api")
)
api_doc_gen.run()
return None