103 lines
2.5 KiB
Python
103 lines
2.5 KiB
Python
|
|
import glob
|
|
import sys
|
|
import re
|
|
|
|
if len(sys.argv) != 3:
|
|
print('usage: triage.py project resultsfile.txt')
|
|
sys.exit(1)
|
|
|
|
project = sys.argv[1]
|
|
resultfile = sys.argv[2]
|
|
|
|
f = open(project + '/true-positives.txt', 'rt')
|
|
truepositives = f.read()
|
|
f.close();
|
|
|
|
f = open(project + '/false-positives.txt', 'rt')
|
|
falsepositives = f.read()
|
|
f.close();
|
|
|
|
fin = open(resultfile,'rt')
|
|
results = fin.read()
|
|
fin.close()
|
|
|
|
fout = open('report.html','wt')
|
|
fout.write('<html><head><title>Cppcheck results for ' + project + '</title><link rel="stylesheet" type="text/css" href="theme1.css"></head><body>\n')
|
|
fout.write('<h1>Cppcheck results for ' + project + '</h1>\n')
|
|
fout.write('<table border="0">\n')
|
|
fout.write('<tr><th>Filename</th><th>Line</th><th>Message</th><th>Classification</th></tr>\n')
|
|
|
|
out = {}
|
|
out['untriaged'] = ''
|
|
out['fp'] = ''
|
|
out['tp'] = ''
|
|
out['notfound'] = ''
|
|
|
|
for result in results.split('\n'):
|
|
result = result.strip()
|
|
|
|
res = re.match('\\[('+project+'.+):([0-9]+)\\]:\s+[(][a-z]+[)] (.+)', result)
|
|
if res == None:
|
|
continue
|
|
|
|
filename = res.group(1)
|
|
linenr = res.group(2)
|
|
message = res.group(3)
|
|
css = 'untriaged'
|
|
classification = 'Untriaged'
|
|
if result in truepositives:
|
|
css = 'tp'
|
|
classification = 'Bug'
|
|
elif result in falsepositives:
|
|
css = 'fp'
|
|
classification = 'Not bug'
|
|
|
|
html = ' <tr>'
|
|
html += '<td class='+css+'>'+filename+'</td>'
|
|
html += '<td class='+css+'>'+linenr+'</td>'
|
|
html += '<td class='+css+'>'+message+'</td>'
|
|
html += '<td class='+css+'>'+classification+'</td>'
|
|
html += '</tr>\n'
|
|
|
|
out[css] += html
|
|
|
|
f = open(project + '/true-positives.txt', 'rt')
|
|
for line in f.readlines():
|
|
line = line.strip()
|
|
if line.find('] -> [') > 0 or line.find('(error)') < 0:
|
|
continue
|
|
|
|
res = re.match('\\[('+project+'.+):([0-9]+)\\]:\s+[(][a-z]+[)] (.+)', line)
|
|
if res == None:
|
|
continue
|
|
|
|
if line in results:
|
|
continue
|
|
|
|
filename = res.group(1)
|
|
linenr = res.group(2)
|
|
message = res.group(3)
|
|
classification = 'Not Found'
|
|
css = 'notfound'
|
|
|
|
html = ' <tr>'
|
|
html += '<td class='+css+'>'+filename+'</td>'
|
|
html += '<td class='+css+'>'+linenr+'</td>'
|
|
html += '<td class='+css+'>'+message+'</td>'
|
|
html += '<td class='+css+'>'+classification+'</td>'
|
|
html += '</tr>\n'
|
|
|
|
out[css] += html
|
|
|
|
f.close();
|
|
|
|
|
|
fout.write(out['tp'])
|
|
fout.write(out['notfound'])
|
|
fout.write(out['untriaged'])
|
|
fout.write(out['fp'])
|
|
|
|
fout.write('</table></body></html>')
|
|
fout.close()
|