forked from PaddlePaddle/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_api_parameters.py
229 lines (210 loc) · 8.8 KB
/
check_api_parameters.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
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import argparse
import ast
import inspect
import json
import os.path as osp
import re
import sys
def add_path(path):
if path not in sys.path:
sys.path.insert(0, path)
this_dir = osp.dirname(__file__)
# Add docs/api to PYTHONPATH
add_path(osp.abspath(osp.join(this_dir, "..", "docs", "api")))
from extract_api_from_docs import extract_params_desc_from_rst_file
arguments = [
# flags, dest, type, default, help
["--rst-files", "rst_files", str, None, "api rst files, sperated by space"],
["--api-info", "api_info_file", str, None, "api_info_all.json filename"],
]
def parse_args():
"""
Parse input arguments
"""
global arguments
parser = argparse.ArgumentParser(description="check api parameters")
parser.add_argument("--debug", dest="debug", action="store_true")
for item in arguments:
parser.add_argument(
item[0], dest=item[1], help=item[4], type=item[2], default=item[3]
)
args = parser.parse_args()
return args
def _check_params_in_description(rstfilename, paramstr):
flag = True
params_intitle = []
if paramstr:
fake_func = ast.parse(f"def fake_func({paramstr}): pass")
for arg in fake_func.body[0].args.args:
params_intitle.append(arg.arg)
funcdescnode = extract_params_desc_from_rst_file(rstfilename)
if funcdescnode:
items = funcdescnode.children[1].children[0].children
if len(items) != len(params_intitle):
flag = False
print(f"check failed (parammeters description): {rstfilename}")
else:
for i in range(len(items)):
pname_intitle = params_intitle[i].split("=")[0].strip()
mo = re.match(r"(\w+)\b.*", items[i].children[0].astext())
if mo:
pname_indesc = mo.group(1)
if pname_indesc != pname_intitle:
flag = False
print(
f"check failed (parammeters description): {rstfilename}, {pname_indesc} != {pname_intitle}"
)
else:
flag = False
print(
f"check failed (parammeters description): {rstfilename}, param name not found in {i} paragraph."
)
else:
if params_intitle:
print(
f"check failed (parameters description not found): {rstfilename}, {params_intitle}."
)
flag = False
return flag
def _check_params_in_description_with_fullargspec(rstfilename, funcname):
flag = True
funcspec = inspect.getfullargspec(eval(funcname))
funcdescnode = extract_params_desc_from_rst_file(rstfilename)
if funcdescnode:
items = funcdescnode.children[1].children[0].children
params_inspec = funcspec.args
if len(items) != len(params_inspec):
flag = False
print(f"check failed (parammeters description): {rstfilename}")
else:
for i in range(len(items)):
pname_intitle = params_inspec[i]
mo = re.match(r"(\w+)\b.*", items[i].children[0].astext())
if mo:
pname_indesc = mo.group(1)
if pname_indesc != pname_intitle:
flag = False
print(
f"check failed (parammeters description): {rstfilename}, {pname_indesc} != {pname_intitle}"
)
else:
flag = False
print(
f"check failed (parammeters description): {rstfilename}, param name not found in {i} paragraph."
)
else:
if funcspec.args:
print(
f"check failed (parameters description not found): {rstfilename}, {funcspec.args}."
)
flag = False
return flag
def check_api_parameters(rstfiles, apiinfo):
"""check function's parameters same as its origin definition.
TODO:
1. All the documents of classes are skiped now. As
(1) there ars many class methods in documents, may break the scripts.
(2) parameters of Class should be checked with its `__init__` method.
2. Some COMPLICATED annotations may break the scripts.
"""
pat = re.compile(
r"^\.\.\s+py:(method|function|class)::\s+(\S+)\s*\(\s*(.*)\s*\)\s*$"
)
check_passed = []
check_failed = []
api_notfound = []
for rstfile in rstfiles:
rstfilename = osp.join("../docs", rstfile)
print(f"checking : {rstfile}")
with open(rstfilename, "r") as rst_fobj:
func_found = False
for line in rst_fobj:
mo = pat.match(line)
if mo:
func_found = True
functype = mo.group(1)
if functype not in ("function", "method"):
check_passed.append(rstfile)
continue
funcname = mo.group(2)
paramstr = mo.group(3)
flag = False
func_found_in_json = False
for apiobj in apiinfo.values():
if (
"all_names" in apiobj
and funcname in apiobj["all_names"]
):
func_found_in_json = True
if "args" in apiobj:
if paramstr == apiobj["args"]:
print(
f"check func:{funcname} in {rstfilename} with {paramstr}"
)
flag = _check_params_in_description(
rstfilename, paramstr
)
else:
print(
f'check func:{funcname} in {rstfilename} with {paramstr}, but different with json\'s {apiobj["args"]}'
)
flag = _check_params_in_description(
rstfilename, paramstr
)
else: # paddle.abs class_method does not have `args` in its json item.
print(
f"check func:{funcname} in {rstfilename} with its FullArgSpec"
)
flag = _check_params_in_description_with_fullargspec(
rstfilename, funcname
)
break
if not func_found_in_json: # may be inner functions
print(
f"check func:{funcname} in {rstfilename} with its FullArgSpec"
)
flag = _check_params_in_description_with_fullargspec(
rstfilename, funcname
)
if flag:
check_passed.append(rstfile)
print(f"check success: {rstfile}")
else:
check_failed.append(rstfile)
print(f"check failed: {rstfile}")
break
if not func_found:
api_notfound.append(rstfile)
print(f"check failed (object not found): {rstfile}")
print(f"checking done: {rstfile}")
return check_passed, check_failed, api_notfound
if __name__ == "__main__":
args = parse_args()
rstfiles = [fn for fn in args.rst_files.split(" ") if fn]
apiinfo = json.load(open(args.api_info_file))
check_passed, check_failed, api_notfound = check_api_parameters(
rstfiles=rstfiles, apiinfo=apiinfo
)
result = True
if check_failed:
result = False
print(f"check_api_parameters failed: {check_failed}")
if api_notfound:
print(f"check_api_parameters funcname not found in: {api_notfound}")
if result:
sys.exit(0)
else:
sys.exit(1)