-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse_docs.py
228 lines (155 loc) · 5.31 KB
/
parse_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
from bs4 import BeautifulSoup
import json
def get_parameter_info(div_group):
parameter_names = []
parameter_info = []
info = []
for div in div_group:
div_txt = div.get_text().replace("\xa0","")
if div_txt in ["None","None.","None "]:
return {}
is_name = div.has_attr("class") and div["class"][0].lower() == "parametername" # some are lower case
is_blank = len(div_txt) == 0
if is_name and not is_blank:
parameter_names.append(div_txt)
if len(info)!=0:
parameter_info.append("\n".join(info))
info = []
else:
info.append(div_txt)
parameter_info.append("\n".join(info)) # TODO redundant
if len(parameter_info) != len(parameter_names):
print(f"parameter mismatch")
return None
inserted_names = []
inserted_info = []
flat_parameter_names = []
flat_parameter_info = []
for parameter in zip(parameter_names, parameter_info):
[name, info] = parameter
name = name.replace(" ","")
subnames = name.split(",")
for subname in subnames:
flat_parameter_names.append(subname)
flat_parameter_info.append(info)
parameter_names = flat_parameter_names
parameter_info = flat_parameter_info
for i in range(len(parameter_names)):
name = parameter_names[i].replace(" ","")
if not name.isidentifier():
return None
info = parameter_info[i]
split_names = name.split(",")
if len(split_names) > 1:
pass
for split_name in split_names:
inserted_names.append(split_name)
inserted_info.append(info)
def flatten(arr):
return arr
# CHATGPT CODE
flattened = []
for item in arr:
if isinstance(item, list):
flattened.extend(flatten(item))
else:
flattened.append(item)
return flattened
#raise Exception("parameter mismatch")
parameter_names = flatten(inserted_names)
parameter_info = flatten(inserted_info)
return dict(zip(parameter_names, parameter_info))
def get_method_info(file_name):
if file_name != desired_path:
pass
# return
if ".htm" not in file_name:
return None
f = open(file_name)
example = f.read()
html = BeautifulSoup(example)
divs = html.findAll()
group = []
prev_div = None
method = None
description = None
arguments = None
for div in divs:
type = div.name
if type == "p":
group.append(div)
elif type == "h2":
if prev_div == None:
header = None
else:
header = prev_div.get_text()
if header == "Syntax":
method = group[0].get_text()
elif header == "Parameters":
arguments = get_parameter_info(group)
elif header == "Remarks":
group_txt = [div.get_text() for div in group]
description = "\n".join(group_txt)
group = []
prev_div = div
if method == None:
return None
success = True
if description == None:
description = ""
success = False
if arguments == None:
arguments = {}
description += "\n Failed to parse arguments, start with '.api.' to call method"
success = False
method_parts = method.split(".")
for part in method_parts:
if not part.isidentifier():
return None
method_data = {
"full_name": method,
"file":file_name, # just used for reference
"about": description,
"arguments":arguments,
"fully_parsed": success
}
return method_data
desired_path = "CSI_OAPI_Documentation\\SAP2000_API_Fuctions\\Edit\\Edit_Point\\ChangeCoordinates_1_{Point}.htm"
def get_docs():
import os
docs = []
base_path = "CSI_OAPI_Documentation\SAP2000_API_Fuctions"
def search_down_dir(path):
contents = os.listdir(path)
files = []
folders = []
for content in contents:
if "." not in content:
folders.append(content)
continue
full_name = f"{path}\\{content}"
method_info = get_method_info(full_name)
if method_info == None:
cant_parse_files.append(full_name)
continue
else:
files.append(method_info)
if not method_info["fully_parsed"]:
cant_parse_arguments_files.append(full_name)
for folder in folders:
search_down_dir(path+"\\"+folder)
methods = files
for method in methods:
docs.append(method)
search_down_dir(base_path)
return docs
cant_parse_files = []
cant_parse_arguments_files = []
docs = get_docs()
json_object = json.dumps(docs, indent=4)
with open("documentation.json", "w") as outfile:
outfile.write(json_object)
with open("cant_parse.txt","w") as outfile:
outfile.write("\n".join(cant_parse_files))
with open("cant_parse_arguments.txt","w") as outfile:
outfile.write("\n".join(cant_parse_arguments_files))