-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelper.py
267 lines (216 loc) · 6.24 KB
/
helper.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
import inspect
import sys
import re
def reg_rfind(content, pattern, pos_start, pos_end):
str_index, comment_index = get_invalid_index(content)
its = list(re.finditer(pattern, content[pos_start:pos_end]))
if len(its) == 0:
return -1
for it in reversed(its):
if it.start() not in str_index and it.start() not in comment_index:
return it.start()
return it.start()
def find_pair(content, i):
if i < 0 or i >= len(content) or content[i] not in "([{":
return -1
start_pair = content[i]
end_pair = None
if content[i] == '(':
end_pair = ')'
elif content[i] == '[':
end_pair = ']'
elif content[i] == '{':
end_pair = '}'
n_start_pair = 0
str_index, comment_index = get_invalid_index(content)
while i < len(content):
if i not in str_index and i not in comment_index:
if content[i] == start_pair:
n_start_pair += 1
elif content[i] == end_pair:
n_start_pair -= 1
if n_start_pair == 0:
break
i += 1
return i
def rfind_pair(content, i):
if i < 0 or i >= len(content) or content[i] not in ")]}":
return -1
start_pair = content[i]
end_pair = None
if content[i] == ')':
end_pair = '('
elif content[i] == ']':
end_pair = '['
elif content[i] == '}':
end_pair = '{'
n_start_pair = 0
str_index, comment_index = get_invalid_index(content)
while i < len(content):
if i not in str_index and i not in comment_index:
if content[i] == start_pair:
n_start_pair += 1
elif content[i] == end_pair:
n_start_pair -= 1
if n_start_pair == 0:
break
i -= 1
return i
def get_var_before_pos(code, pos):
if pos < 0:
return None
if pos > len(code):
pos = len(code)-1
pos = rskip_space(code, pos)
if pos == -1:
return None
token, _ = rget_token(code, pos)
used_frame = inspect.currentframe().f_back.f_back.f_back
return eval(token["word"], used_frame.f_globals, used_frame.f_locals)
__str_index_dict = {}
__comment_index_dict = {}
def get_invalid_index(content):
global __str_index_dict
if content in __str_index_dict:
return __str_index_dict[content], __comment_index_dict[content]
str_index = set()
comment_index = set()
in_comment = False
in_str = False
str_start_char = None
last_is_slash = False
i = 0
while i < len(content):
should_add = True
if content[i] == "'" and not last_is_slash:
if not in_str:
should_add = False
in_str = True
str_start_char = "'"
elif str_start_char == "'":
in_str = False
str_start_char = None
elif content[i] == '"' and not last_is_slash:
if not in_str:
should_add = False
in_str = True
str_start_char = '"'
elif str_start_char == '"':
in_str = False
str_start_char = None
elif content[i] in "#\\" and not in_str:
in_comment = True
elif content[i] == "\n" and in_comment:
in_comment = False
if content[i] == '\\' and in_str:
last_is_slash = (not last_is_slash)
else:
last_is_slash = False
if should_add:
if in_str:
str_index.add(i)
if in_comment:
comment_index.add(i)
i += 1
__str_index_dict[content] = str_index
__comment_index_dict[content] = comment_index
return str_index, comment_index
def delete_python_comments(content):
str_start_char = None
i = 0
str_index, comment_index = get_invalid_index(content)
while i < len(content):
if i not in str_index:
if content[i] == "#":
pos_endl = content.find("\n", i)
if pos_endl == -1:
pos_endl = len(content)
content = content[:i] + content[pos_endl:]
elif content[i] == '\\':
pos_endl = content.find("\n", i)
if pos_endl == -1:
pos_endl = len(content)
else:
pos_endl += 1
content = content[:i] + content[pos_endl:]
i += 1
return content
__code_dict = {}
def get_actual_args_str():
current_frame = inspect.currentframe()
n_line = current_frame.f_back.f_back.f_lineno
filename = current_frame.f_back.f_back.f_code.co_filename
funcname = current_frame.f_back.f_code.co_name
is_method = ("self" in current_frame.f_back.f_locals)
if (funcname == "__init__" or funcname == "__new__") and is_method:
funcname = current_frame.f_back.f_locals["self"].__class__.__name__
is_method = False
code = ""
global __code_dict
if filename in __code_dict:
code = __code_dict[filename]
else:
code = open(filename, "r", encoding=sys.getdefaultencoding(), errors="ignore").read()
__code_dict[filename] = code
i_break = -1
for i in range(n_line):
i_break = code.find('\n', i_break+1)
pos_func_start = i_break
func_begin_bak = None
func_begin = None
if is_method:
while True:
pos_func_start = reg_rfind(code, funcname + r"\s*\(", 0, pos_func_start-1)
if pos_func_start == -1:
func_begin = func_begin_bak
break
if func_begin_bak is None:
func_begin_bak = func_begin
var = get_var_before_pos(code, pos_func_start-1)
if var is None or (is_method and current_frame.f_back.f_locals["self"] is var):
func_begin = pos_func_start + len(funcname)
break
else:
pos_func_start = reg_rfind(code, funcname + r"\s*\(", 0, pos_func_start-1)
func_begin = pos_func_start + len(funcname)
pos_left_brace = code.find('(', func_begin)
i = find_pair(code, pos_left_brace)
str_args = delete_python_comments(code[pos_left_brace+1:i]) + "#"
args = []
kwargs = {}
is_key_value = False
key = ""
pos_start = 0
n_left_small_brace = 0
n_left_middle_brace = 0
n_left_big_brace = 0
str_index, comment_index = get_invalid_index(str_args)
i = 0
while i < len(str_args):
if i not in str_index:
if str_args[i] == "(":
n_left_small_brace += 1
elif str_args[i] == ")":
n_left_small_brace -= 1
elif str_args[i] == "[":
n_left_middle_brace += 1
elif str_args[i] == "]":
n_left_middle_brace -= 1
elif str_args[i] == "{":
n_left_big_brace += 1
elif str_args[i] == "}":
n_left_big_brace -= 1
if n_left_small_brace == 0 and n_left_middle_brace == 0 and n_left_big_brace == 0:
if str_args[i] in ",#":
if is_key_value:
kwargs[key] = str_args[pos_start:i].strip(" \\\t\n")
is_key_value = False
else:
args.append(str_args[pos_start:i].strip(" \\\t\n"))
pos_start = i + 1
elif str_args[i] == '=' and (i-1 > 0 and str_args[i-1] not in "><!=") and (i+1 < len(str_args) and str_args[i+1] != "="):
key = str_args[pos_start:i].strip(" \\\t\n")
is_key_value = True
pos_start = i + 1
i += 1
return args, kwargs