-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathjavaClassMethodExtractor.py
More file actions
409 lines (313 loc) · 12.6 KB
/
javaClassMethodExtractor.py
File metadata and controls
409 lines (313 loc) · 12.6 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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
import sys
sys.path.append("../")
import os
import utils
fixedLocation = sys.argv[1]
buggyLocation = sys.argv[2]
outputLocation = sys.argv[3]
funcNumber = 0
foundMethods = []
def extract_method(src_code):
method = ""
curlyCount = 0
inString = False
for index, char in enumerate(src_code):
method += char
if index + 1 < len(src_code):
if src_code[index-1] == "'" and src_code[index] == "{" and src_code[index+1] == "'":
curlyCount -= 1
elif src_code[index-1] == "'" and src_code[index] == "}" and src_code[index+1] == "'":
curlyCount += 1
elif src_code[index-1] == "'" and src_code[index] == '"' and src_code[index+1] == "'":
continue
if index - 1 > 0:
if src_code[index-1] == "\\" and src_code[index] == '"':
continue
#to avoid counting curly brackets inside a string or character.
if char == '"' and inString == False:
inString = True
elif char == '"' and inString==True:
inString = False
elif char == "{" and inString==False:
curlyCount +=1
elif char == "}" and curlyCount == 1 and inString==False:
break
elif char == "}" and curlyCount != 1 and inString==False:
curlyCount -=1
return method
def processAdd(lineNum, diffFile):
global funcNumber
global foundMethods
line = diffFile[lineNum]
old, new = line.split("a")
startIndex = list(map(int,new.split(",")))[0] -1
st = startIndex
lineNum+=1
isThereMethod = False
while lineNum < len(diffFile):
line = diffFile[lineNum]
if line[0] != ">":
break
line = line[1:].strip()
if utils.is_method_sig(line):
isThereMethod = True
break
lineNum+=1
st+=1
if isThereMethod and utils.extract_method_name(diffFile[lineNum]) not in foundMethods:
methodName = utils.extract_method_name(diffFile[lineNum])
src_code = "".join(fixedFile[st:])
method = extract_method(src_code)
f = open(outputLocation + str(funcNumber) + str(funcNumber) + ".txt", "w") #fixed classes 00.txt
f.write(method)
f.close()
f = open(outputLocation + str(funcNumber) + ".txt", "w") # since not existing method empty file and 0.txt
f.write("")
f.close()
funcNumber+=1
foundMethods.append(methodName)
else:
isThereMethod = False
found_method_sig_fixed = ''
while startIndex >= 0:
line = fixedFile[startIndex].strip()
st = startIndex
while True:
res = utils.is_method_sig_format(line)
if res == 1 or res == 2:
break
elif res == 3:
line = line + " " + fixedFile[st].strip()
st += 1
continue
if utils.is_method_sig(line):
found_method_sig_fixed = line
isThereMethod = True
break
startIndex-=1
if isThereMethod and startIndex != -1 and utils.extract_method_name(found_method_sig_fixed) not in foundMethods:
methodName = utils.extract_method_name(found_method_sig_fixed)
src_code = "".join(fixedFile[startIndex:])
method = extract_method(src_code)
f = open(outputLocation + str(funcNumber) + str(funcNumber) + ".txt", "w") #fixed classes 00.txt
f.write(method)
f.close()
found_method_sig_buggy = ''
old = int(old) -1
while old >= 0:
line = buggyFile[old].strip()
bst = old
while True:
res = utils.is_method_sig_format(line)
if res == 1 or res == 2:
break
elif res == 3:
line = line + " " + buggyFile[bst].strip()
bst += 1
continue
if utils.is_method_sig(line):
found_method_sig_buggy = line
break
old-=1
methodName = utils.extract_method_name(found_method_sig_buggy)
src_code = "".join(buggyFile[old:])
method = extract_method(src_code)
f = open(outputLocation + str(funcNumber) + ".txt", "w") # since not existing method empty file and 0.txt
f.write(method)
f.close()
funcNumber+=1
foundMethods.append(methodName)
return lineNum
def processChange(lineNum, diffFile):
global foundMethods
global funcNumber
line = diffFile[lineNum]
old, new = line.split("c")
startIndex = list(map(int, new.split(",")))[0] -1
buggyStartIndex = list(map(int, old.split(",")))[0] -1
st = startIndex
lineNum+=1
isThereMethod = False
while lineNum < len(diffFile):
line = diffFile[lineNum]
if line[0] != "<":
break
line = line[1:].strip()
if utils.is_method_sig(line):
isThereMethod = True
break
st+=1
lineNum+=1
if isThereMethod and utils.extract_method_name(diffFile[lineNum]) not in foundMethods:
methodName = utils.extract_method_name(diffFile[lineNum])
src_code = "".join(fixedFile[st:])
method = extract_method(src_code)
f = open(outputLocation + str(funcNumber) + str(funcNumber) + ".txt", "w") #fixed classes 00.txt
f.write(method)
f.close()
f = open(outputLocation + str(funcNumber) + ".txt", "w") # since not existing method empty file and 0.txt
f.write("")
f.close()
funcNumber+=1
foundMethods.append(methodName)
else:
isThereMethod = False
found_method_sig_fixed = ''
while startIndex >= 0:
line = fixedFile[startIndex].strip()
st = startIndex
while True:
res = utils.is_method_sig_format(line)
if res == 1 or res == 2:
break
elif res == 3:
line = line + " " + fixedFile[st].strip()
st += 1
continue
if utils.is_method_sig(line):
found_method_sig_fixed = line
isThereMethod = True
break
startIndex-=1
if isThereMethod and startIndex != -1 and utils.extract_method_name(found_method_sig_fixed) not in foundMethods:
methodName = utils.extract_method_name(found_method_sig_fixed)
src_code = "".join(fixedFile[startIndex:])
method = extract_method(src_code)
f = open(outputLocation + str(funcNumber) + str(funcNumber) + ".txt", "w") #fixed classes 00.txt
f.write(method)
f.close()
found_method_sig_buggy = ''
while buggyStartIndex >= 0:
line = buggyFile[buggyStartIndex].strip()
bst = buggyStartIndex
while True:
res = utils.is_method_sig_format(line)
if res == 1 or res == 2:
break
elif res == 3:
line = line + " " + buggyFile[bst].strip()
bst += 1
continue
if utils.is_method_sig(line):
found_method_sig_buggy = line
break
buggyStartIndex-=1
methodName = utils.extract_method_name(found_method_sig_buggy)
src_code = "".join(buggyFile[buggyStartIndex:])
method = extract_method(src_code)
f = open(outputLocation + str(funcNumber) + ".txt", "w") # since not existing method empty file and 0.txt
f.write(method)
f.close()
funcNumber+=1
foundMethods.append(methodName)
return lineNum
def processDelete(lineNum, diffFile):
global funcNumber
global foundMethods
line = diffFile[lineNum]
old, new = line.split("d")
startIndex = list(map(int,old.split(",")))[0] -1
st = startIndex
lineNum+=1
isThereMethod = False
while lineNum < len(diffFile):
line = diffFile[lineNum]
if line[0] != "<":
break
line = line[1:].strip()
if utils.is_method_sig(line):
isThereMethod = True
break
lineNum+=1
st+=1
if isThereMethod and utils.extract_method_name(diffFile[lineNum]) not in foundMethods:
methodName = utils.extract_method_name(diffFile[lineNum])
src_code = "".join(buggyFile[st:])
method = extract_method(src_code)
f = open(outputLocation + str(funcNumber) + ".txt", "w") #buggy classes 0.txt
f.write(method)
f.close()
f = open(outputLocation + str(funcNumber) + str(funcNumber) + ".txt", "w") # since not existing method empty file and 00.txt
f.write("")
f.close()
funcNumber+=1
foundMethods.append(methodName)
else:
isThereMethod = False
found_method_sig_buggy = ''
while startIndex >= 0:
line = buggyFile[startIndex].strip()
st = startIndex
while True:
res = utils.is_method_sig_format(line)
if res == 1 or res == 2:
break
elif res == 3:
line = line + " " + buggyFile[st].strip()
st += 1
continue
if utils.is_method_sig(line):
found_method_sig_buggy = line
isThereMethod = True
break
startIndex-=1
if isThereMethod and startIndex != -1 and utils.extract_method_name(found_method_sig_buggy) not in foundMethods:
methodName = utils.extract_method_name(found_method_sig_buggy)
src_code = "".join(buggyFile[startIndex:])
method = extract_method(src_code)
f = open(outputLocation + str(funcNumber) + ".txt", "w") #buggy classes 0.txt
f.write(method)
f.close()
new = int(new) -1
found_method_sig_fixed = ''
while new >= 0:
line = fixedFile[new].strip()
st = new
while True:
res = utils.is_method_sig_format(line)
if res == 1 or res == 2:
break
elif res == 3:
line = line + " " + fixedFile[st].strip()
st += 1
continue
if utils.is_method_sig(line):
found_method_sig_fixed = line
break
new-=1
methodName = utils.extract_method_name(found_method_sig_fixed)
src_code = "".join(fixedFile[new:])
method = extract_method(src_code)
f = open(outputLocation + str(funcNumber) + str(funcNumber) + ".txt", "w") #00.txt
f.write(method)
f.close()
funcNumber+=1
foundMethods.append(methodName)
return lineNum
buggyLocation = buggyLocation.replace("$","\$")
fixedLocation = fixedLocation.replace("$","\$")
os.system("cp " + buggyLocation + " ./buggy.txt")
os.system("cp " + fixedLocation + " ./fixed.txt")
os.system("diff " + buggyLocation + " " + fixedLocation + " > ./temp.txt")
with open("./temp.txt", "r", encoding="ISO-8859-1", errors='ignore') as f:
diffFile = f.readlines()
diffFile = list(map(lambda x: x.strip(), diffFile))
with open("./buggy.txt", "r", encoding="ISO-8859-1", errors='ignore') as f:
buggyFile = f.readlines()
with open("./fixed.txt", "r", encoding="ISO-8859-1", errors='ignore') as f:
fixedFile = f.readlines()
lineNum = 0
while lineNum < len(diffFile):
line = diffFile[lineNum]
if line[0].isnumeric() and line.find("a") != -1:
lineNum = processAdd(lineNum, diffFile)
elif line[0].isnumeric() and line.find("c") != -1:
lineNum = processChange(lineNum, diffFile)
elif line[0].isnumeric() and line.find("d") != -1:
lineNum = processDelete(lineNum, diffFile)
else:
lineNum+=1
print(funcNumber)
methodsFile = open(outputLocation + "foundMethods.txt", "w")
methodsFile.write("\n".join(foundMethods))
os.system('rm temp.txt buggy.txt fixed.txt')