-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdistributor.py
290 lines (289 loc) · 14.8 KB
/
distributor.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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#-*- coding: utf-8 -*-
# from __future__ import print_function
from os.path import join
import pickle
import gzip, logging, sys, os, csv, time
sys.path.append('.')
sys.path.append('..')
from utils import mkdir_p, write_file_a, read_file, cleanMetaPath, load_zipped_pickle, getClassNames
from os.path import join, isfile
import sys, glob, os, xml, codecs
from bs4 import BeautifulSoup as Soup
every_counter = 0
cn_counter = 0
def files(path):
for file in os.listdir(path):
if os.path.isfile(os.path.join(path, file)):
yield file
def SplitReportsToBuckets(target_list, input_bug_list, stack_trace_lst, output_path, target):
every_cnt = 0
target_cnt = 0
os.chdir('path')
with open("file.pickle", "rb") as f:
bench_bug_dev_user = pickle.load(f)
bug_list = list()
bug_isDeveloper_dict = dict()
base = 'path' % (target.split('/')[0], target.split('/')[-1].upper())
for xml_file in os.listdir(base):
flag = 0 # Did the report get into any bucket?
every_cnt += 1
# print(base + xml_file)
handler = open(base + xml_file).read()
soup = Soup(handler, features='lxml')
for item in soup.findAll('item'):
title = str(item.find('title').string)
bug = title.split('[')[1].split(']')[0]
if not bug in input_bug_list:
continue
target_cnt += 1
summary = str(item.find('summary').string)
description = str(item.find('description').string)
status = str(item.find('status').string)
reporter = str(item.find('reporter').string)
created_date = str(item.find('created').string)
dev_user = bench_bug_dev_user[bug]
attachment = str(item.find('attachments').string)
''' Set feature values '''
f_dev_user = 'user'
f_attachment = 'attach_x'
f_summary = 'summary_x'
f_classname = 'class_x'
f_desc = 'desc_x'
f_stacktrace = 'stack_x'
if not summary is None:
f_summary = 'summary_o'
class_file = 'path' + 'path' + 'file.txt' % target.split('/')[-1].capitalize()
class_names = getClassNames(class_file)
for class_name in class_names:
if class_name.split('/')[-1] in summary:
f_classname = 'class_o'
break
if dev_user == True:
f_dev_user = 'developer'
if not attachment == 'None':
f_attachment = 'attach_o'
if not description is None:
f_desc = 'desc_o'
if bug in stack_trace_lst:
f_stacktrace = 'stack_o'
if f_classname == 'class_o':
if f_dev_user == 'developer':
if f_attachment == 'attach_o':
if f_desc == 'desc_o':
if f_stacktrace == 'stack_o':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_stacktrace == 'stack_x':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_desc == 'desc_x':
if f_summary == 'summary_o':
if f_stacktrace == 'stack_x':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_attachment == 'attach_x':
if f_stacktrace == 'stack_o':
if f_summary == 'summary_o':
if f_desc == 'desc_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_stacktrace == 'stack_x':
if f_desc == 'desc_o':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_desc == 'desc_x':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_dev_user == 'user':
if f_stacktrace == 'stack_o':
if f_attachment == 'attach_o':
if f_summary == 'summary_o':
if f_desc == 'desc_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_attachment == 'attach_x':
if f_summary == 'summary_o':
if f_desc == 'desc_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_stacktrace == 'stack_x':
if f_attachment == 'attach_o':
if f_desc == 'desc_o':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_desc == 'desc_x':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_attachment == 'attach_x':
if f_desc == 'desc_o':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_desc == 'desc_x':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_classname == 'class_x':
if f_dev_user == 'developer':
if f_desc == 'desc_o':
if f_attachment == 'attach_o':
if f_stacktrace == 'stack_o':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_stacktrace == 'stack_x':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_attachment == 'attach_x':
if f_stacktrace == 'stack_o':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_stacktrace == 'stack_x':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_desc == 'desc_x':
if f_attachment == 'attach_o':
if f_summary == 'summary_o':
if f_stacktrace == 'stack_x':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_attachment == 'attach_x':
if f_summary == 'summary_o':
if f_stacktrace == 'stack_x':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_dev_user == 'user':
if f_desc == 'desc_o':
if f_stacktrace == 'stack_o':
if f_attachment == 'attach_o':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_attachment == 'attach_x':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_stacktrace == 'stack_x':
if f_attachment == 'attach_o':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_attachment == 'attach_x':
if f_summary == 'summary_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_desc == 'desc_x':
if f_attachment == 'attach_o':
if f_summary == 'summary_o':
if f_stacktrace == 'stack_o':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
elif f_attachment == 'attach_x':
if f_summary == 'summary_o':
if f_stacktrace == 'stack_x':
flag = 1
print(bug, '\t')
write_file_a(output_path + 'file.txt', bug)
continue
if flag == 0:
write_file_a(output_path + 'file.txt', bug)
if __name__ == "__main__":
target_list = ['Commons/Math', 'Apache/Hive', 'Apache/Hbase', 'Apache/Camel',
'Commons/Codec', 'Commons/Collections', 'Commons/Compress', 'Commons/Configuration',
'Commons/Crypto',
'Commons/Csv', 'Commons/Io', 'Commons/Lang', 'Commons/Weaver',
'JBoss/Entesb', 'JBoss/Jbmeta',
'Spring/Amqp', 'Spring/Batchadm', 'Spring/Datajpa', 'Spring/Datarest', 'Spring/Roo',
'Spring/Sgf', 'Spring/Social', 'Spring/Socialtw', 'Spring/Sws', 'Spring/Android',
'Spring/Datacmns', 'Spring/Datamongo', 'Spring/Ldap', 'Spring/Sec', 'Spring/Shdp',
'Spring/Socialfb', 'Spring/Spr', 'Spring/Batch', 'Spring/Datagraph', 'Spring/Dataredis',
'Spring/Mobile', 'Spring/Secoauth', 'Spring/Shl', 'Spring/Socialli', 'Spring/Swf',
'Wildfly/Ely', 'Wildfly/Swarm', 'Wildfly/Wfarq', 'Wildfly/Wfcore', 'Wildfly/Wfly', 'Wildfly/Wfmp'
]
input_bug_list = list()
input_path = 'path'
exe_dir = "path"
os.chdir(exe_dir)
stack_trace_lst = []
for target in target_list:
for report in os.listdir(input_path + target.split('/')[-1]):
print('Checking.. %s' % report)
input_bug_list.append(report.split('.')[0])
info_target = input_path + target.split('/')[-1] + '/' + report
if isfile(info_target + '.cleaned'):
os.remove(info_target + '.cleaned')
if isfile(info_target + '.result.xml'):
os.remove(info_target + '.result.xml')
a = os.popen("/opt/gradle/gradle-6.1/bin/gradle run -s --args='%s'" % info_target).read()
for line in a.split('\n'):
if 'Stack Traces' in line:
if int(line[0]) > 0:
stack_trace_lst.append(report.split('.')[0])
write_file_a('info_stack.txt', report.split('.')[0])
print('%s: Marked as true' % report.split('.')[0])
if isfile(info_target + '.cleaned'):
os.remove(info_target + '.cleaned')
if isfile(info_target + '.result.xml'):
os.remove(info_target + '.result.xml')
for idx, target in enumerate(target_list):
output_path = 'path' % target.split('/')[-1]
if os.path.isdir(output_path):
cleanMetaPath(output_path)
else:
mkdir_p(output_path)
SplitReportsToBuckets(target_list, input_bug_list, stack_trace_lst, output_path, target)