-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
executable file
·320 lines (299 loc) · 12.3 KB
/
test.py
File metadata and controls
executable file
·320 lines (299 loc) · 12.3 KB
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
def add(a, b):
# return the summation of a and b
return a+b
source_code = """
def add(a, b):
# return the summation of a and b
return a+b
"""
code = """
def add(a, b):
return a+b
"""
code = """
def sample():
a_ahead = random()
if a_ahead%2 == 0:
AheadMan = a_ahead +1
print(AheadMan)
"""
code = """
def sample():
a = random()
if a%2 == 0:
b = a +1
print(b)
"""
source_code = '''
'def get_svc_avail_path():\n\treturn AVAIL_SVR_DIRS'
'''
from tree_sitter import Language, Parser
from utils import remove_comments_and_docstrings, tree_to_token_index, index_to_code_token, tree_to_variable_index
# PY_LANGUAGE = Language('build/yk-languages.so', 'python')
# parser = Parser()
# parser.set_language(PY_LANGUAGE)
# src_clean = remove_comments_and_docstrings(source_code, 'python')
# print(src_clean)
# def make_move(cursor, move, all_nodes):
# # 递归遍历该树,把每个节点的信息保存起来,包括结点的类型、涉及范围的代码行起始位置、终止位置。
# # cursor: 即当前光标的位置(即节点的位置),通过cursor.node即可获取当前节点
# # move: 把move参数作为当前节点的移动方向
# # all_nodes: 保存节点信息的列表 (保存的是前序遍历的结果:根左右)
#
# if (move == "down"):
# all_nodes.append(cursor.node)
# if (cursor.goto_first_child()):
# make_move(cursor, "down", all_nodes)
# elif (cursor.goto_next_sibling()):
# make_move(cursor, "right", all_nodes)
# elif (cursor.goto_parent()):
# make_move(cursor, "up", all_nodes)
# elif (move == "right"):
# all_nodes.append(cursor.node)
# if (cursor.goto_first_child()):
# make_move(cursor, "down", all_nodes)
# elif (cursor.goto_next_sibling()):
# make_move(cursor, "right", all_nodes)
# elif (cursor.goto_parent()):
# make_move(cursor, "up", all_nodes)
# elif move == "up":
# if (cursor.goto_next_sibling()):
# make_move(cursor, "right", all_nodes)
# elif (cursor.goto_parent()):
# make_move(cursor, "up", all_nodes)
# tree = parser.parse(bytes(src_clean, 'utf8'))
# cursor = tree.walk()
# all_nodes = []
# make_move(cursor, "down", all_nodes)
# print(all_nodes)
#
# root_node = tree.root_node
# tokens = tree_to_token_index(root_node)
#
# print(tokens)
# print(len(tokens))
# from .DFG import DFG_python,DFG_java\
# ,DFG_ruby,DFG_go,DFG_php,DFG_javascript
def DFG_python(root_node, index_to_code, states):
assignment = ['assignment', 'augmented_assignment', 'for_in_clause']
if_statement = ['if_statement']
for_statement = ['for_statement']
while_statement = ['while_statement']
do_first_statement = ['for_in_clause']
def_statement = ['default_parameter']
states = states.copy()
if (len(root_node.children) == 0 or root_node.type == 'string') and root_node.type != 'comment':
idx, code = index_to_code[(root_node.start_point, root_node.end_point)]
if root_node.type == code:
return [], states
elif code in states:
return [(code, idx, 'comesFrom', [code], states[code].copy())], states
else:
if root_node.type == 'identifier':
states[code] = [idx]
return [(code, idx, 'comesFrom', [], [])], states
elif root_node.type in def_statement:
name = root_node.child_by_field_name('name')
value = root_node.child_by_field_name('value')
DFG = []
if value is None:
indexs = tree_to_variable_index(name, index_to_code)
for index in indexs:
idx, code = index_to_code[index]
DFG.append((code, idx, 'comesFrom', [], []))
states[code] = [idx]
return sorted(DFG, key=lambda x: x[1]), states
else:
name_indexs = tree_to_variable_index(name, index_to_code)
value_indexs = tree_to_variable_index(value, index_to_code)
temp, states = DFG_python(value, index_to_code, states)
DFG += temp
for index1 in name_indexs:
idx1, code1 = index_to_code[index1]
for index2 in value_indexs:
idx2, code2 = index_to_code[index2]
DFG.append((code1, idx1, 'comesFrom', [code2], [idx2]))
states[code1] = [idx1]
return sorted(DFG, key=lambda x: x[1]), states
elif root_node.type in assignment:
if root_node.type == 'for_in_clause':
right_nodes = [root_node.children[-1]]
left_nodes = [root_node.child_by_field_name('left')]
else:
if root_node.child_by_field_name('right') is None:
return [], states
left_nodes = [x for x in root_node.child_by_field_name('left').children if x.type != ',']
right_nodes = [x for x in root_node.child_by_field_name('right').children if x.type != ',']
if len(right_nodes) != len(left_nodes):
left_nodes = [root_node.child_by_field_name('left')]
right_nodes = [root_node.child_by_field_name('right')]
if len(left_nodes) == 0:
left_nodes = [root_node.child_by_field_name('left')]
if len(right_nodes) == 0:
right_nodes = [root_node.child_by_field_name('right')]
DFG = []
for node in right_nodes:
temp, states = DFG_python(node, index_to_code, states)
DFG += temp
for left_node, right_node in zip(left_nodes, right_nodes):
left_tokens_index = tree_to_variable_index(left_node, index_to_code)
right_tokens_index = tree_to_variable_index(right_node, index_to_code)
temp = []
for token1_index in left_tokens_index:
idx1, code1 = index_to_code[token1_index]
temp.append((code1, idx1, 'computedFrom', [index_to_code[x][1] for x in right_tokens_index],
[index_to_code[x][0] for x in right_tokens_index]))
states[code1] = [idx1]
DFG += temp
return sorted(DFG, key=lambda x: x[1]), states
elif root_node.type in if_statement:
DFG = []
current_states = states.copy()
others_states = []
tag = False
if 'else' in root_node.type:
tag = True
for child in root_node.children:
if 'else' in child.type:
tag = True
if child.type not in ['elif_clause', 'else_clause']:
temp, current_states = DFG_python(child, index_to_code, current_states)
DFG += temp
else:
temp, new_states = DFG_python(child, index_to_code, states)
DFG += temp
others_states.append(new_states)
others_states.append(current_states)
if tag is False:
others_states.append(states)
new_states = {}
for dic in others_states:
for key in dic:
if key not in new_states:
new_states[key] = dic[key].copy()
else:
new_states[key] += dic[key]
for key in new_states:
new_states[key] = sorted(list(set(new_states[key])))
return sorted(DFG, key=lambda x: x[1]), new_states
elif root_node.type in for_statement:
DFG = []
for i in range(2):
right_nodes = [x for x in root_node.child_by_field_name('right').children if x.type != ',']
left_nodes = [x for x in root_node.child_by_field_name('left').children if x.type != ',']
if len(right_nodes) != len(left_nodes):
left_nodes = [root_node.child_by_field_name('left')]
right_nodes = [root_node.child_by_field_name('right')]
if len(left_nodes) == 0:
left_nodes = [root_node.child_by_field_name('left')]
if len(right_nodes) == 0:
right_nodes = [root_node.child_by_field_name('right')]
for node in right_nodes:
temp, states = DFG_python(node, index_to_code, states)
DFG += temp
for left_node, right_node in zip(left_nodes, right_nodes):
left_tokens_index = tree_to_variable_index(left_node, index_to_code)
right_tokens_index = tree_to_variable_index(right_node, index_to_code)
temp = []
for token1_index in left_tokens_index:
idx1, code1 = index_to_code[token1_index]
temp.append((code1, idx1, 'computedFrom', [index_to_code[x][1] for x in right_tokens_index],
[index_to_code[x][0] for x in right_tokens_index]))
states[code1] = [idx1]
DFG += temp
if root_node.children[-1].type == "block":
temp, states = DFG_python(root_node.children[-1], index_to_code, states)
DFG += temp
dic = {}
for x in DFG:
if (x[0], x[1], x[2]) not in dic:
dic[(x[0], x[1], x[2])] = [x[3], x[4]]
else:
dic[(x[0], x[1], x[2])][0] = list(set(dic[(x[0], x[1], x[2])][0] + x[3]))
dic[(x[0], x[1], x[2])][1] = sorted(list(set(dic[(x[0], x[1], x[2])][1] + x[4])))
DFG = [(x[0], x[1], x[2], y[0], y[1]) for x, y in sorted(dic.items(), key=lambda t: t[0][1])]
return sorted(DFG, key=lambda x: x[1]), states
elif root_node.type in while_statement:
DFG = []
for i in range(2):
for child in root_node.children:
temp, states = DFG_python(child, index_to_code, states)
DFG += temp
dic = {}
for x in DFG:
if (x[0], x[1], x[2]) not in dic:
dic[(x[0], x[1], x[2])] = [x[3], x[4]]
else:
dic[(x[0], x[1], x[2])][0] = list(set(dic[(x[0], x[1], x[2])][0] + x[3]))
dic[(x[0], x[1], x[2])][1] = sorted(list(set(dic[(x[0], x[1], x[2])][1] + x[4])))
DFG = [(x[0], x[1], x[2], y[0], y[1]) for x, y in sorted(dic.items(), key=lambda t: t[0][1])]
return sorted(DFG, key=lambda x: x[1]), states
else:
DFG = []
for child in root_node.children:
if child.type in do_first_statement:
temp, states = DFG_python(child, index_to_code, states)
DFG += temp
for child in root_node.children:
if child.type not in do_first_statement:
temp, states = DFG_python(child, index_to_code, states)
DFG += temp
return sorted(DFG, key=lambda x: x[1]), states
from tree_sitter import Language, Parser
dfg_function={
'python':DFG_python,
# 'java':DFG_java,
# 'ruby':DFG_ruby,
# 'go':DFG_go,
# 'php':DFG_php,
# 'javascript':DFG_javascript
}
parsers={}
for lang in dfg_function:
LANGUAGE = Language('build/yk-languages.so', lang)
parser = Parser()
parser.set_language(LANGUAGE)
parser = [parser,dfg_function[lang]]
parsers[lang]= parser
def extract_dataflow(code, parser,lang):
#remove comments
try:
code=remove_comments_and_docstrings(code,lang)
except:
pass
#obtain dataflow
if lang=="php":
code="<?php"+code+"?>"
try:
tree = parser[0].parse(bytes(code,'utf8'))
root_node = tree.root_node
tokens_index=tree_to_token_index(root_node)
code=code.split('\n')
code_tokens=[index_to_code_token(x,code) for x in tokens_index]
index_to_code={}
for idx,(index,code) in enumerate(zip(tokens_index,code_tokens)):
index_to_code[index]=(idx,code)
try:
DFG,_=parser[1](root_node,index_to_code,{})
except:
DFG=[]
DFG=sorted(DFG,key=lambda x:x[1])
indexs=set()
for d in DFG:
if len(d[-1])!=0:
indexs.add(d[1])
for x in d[-1]:
indexs.add(x)
new_DFG=[]
for d in DFG:
if d[1] in indexs:
new_DFG.append(d)
dfg=new_DFG
except:
dfg=[]
return code_tokens, dfg
a,b = extract_dataflow(code=code, parser=parser,lang='python')
# a,b = extract_dataflow(code=source_code, parser=parser,lang='python')
print(a)
print(b)
print("OsssssssK")