diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2020-01-31 13:38:59 +0000 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2020-03-01 20:29:18 +0000 |
commit | f28f0272bb2d18b450a3151164deb663eef62a68 (patch) | |
tree | dbe8a2a5e035d132f403cabd58e519004116e70a /tools/klee-stats | |
parent | db4722b49a13557c4a987893f5455001188d4400 (diff) | |
download | klee-f28f0272bb2d18b450a3151164deb663eef62a68.tar.gz |
[klee-stats] Refactor writing table into own function
Diffstat (limited to 'tools/klee-stats')
-rwxr-xr-x | tools/klee-stats/klee-stats | 92 |
1 files changed, 46 insertions, 46 deletions
diff --git a/tools/klee-stats/klee-stats b/tools/klee-stats/klee-stats index 98062d09..25fb6136 100755 --- a/tools/klee-stats/klee-stats +++ b/tools/klee-stats/klee-stats @@ -255,6 +255,51 @@ def write_csv(data): csv_out.writerow(result) +def write_table(args, data, dirs, pr): + if len(data) > 1: + dirs = stripCommonPathPrefix(dirs) + # attach the stripped path + data = list(zip(dirs, data)) + labels = getLabels(pr) + # build the main body of the table + table = [] + totRecords = [] # accumulated records + totStats = [] # accumulated stats + for path, records in data: + row = [path] + stats = records.aggregateRecords() + totStats.append(stats) + row.extend(getRow(records.getLastRecord(), stats, pr)) + totRecords.append(records.getLastRecord()) + table.append(row) + # calculate the total + totRecords = [sum(e) for e in zip(*totRecords)] + totStats = [sum(e) for e in zip(*totStats)] + totalRow = ['Total ({0})'.format(len(table))] + totalRow.extend(getRow(totRecords, totStats, pr)) + if len(data) > 1: + table.append(totalRow) + table.insert(0, labels) + if args.tableFormat != 'klee': + print(tabulate( + table, headers='firstrow', + tablefmt=args.tableFormat, + floatfmt='.{p}f'.format(p=2), + numalign='right', stralign='center')) + else: + stream = tabulate( + table, headers='firstrow', + tablefmt=KleeTable, + floatfmt='.{p}f'.format(p=2), + numalign='right', stralign='center') + # add a line separator before the total line + if len(data) > 1: + stream = stream.splitlines() + stream.insert(-2, stream[-1]) + stream = '\n'.join(stream) + print(stream) + + def main(): parser = argparse.ArgumentParser( description='output statistics logged by klee', @@ -330,52 +375,7 @@ def main(): write_csv(data) return - if len(data) > 1: - dirs = stripCommonPathPrefix(dirs) - # attach the stripped path - data = list(zip(dirs, data)) - - labels = getLabels(pr) - - # build the main body of the table - table = [] - totRecords = [] # accumulated records - totStats = [] # accumulated stats - for path, records in data: - row = [path] - stats = records.aggregateRecords() - totStats.append(stats) - row.extend(getRow(records.getLastRecord(), stats, pr)) - totRecords.append(records.getLastRecord()) - table.append(row) - # calculate the total - totRecords = [sum(e) for e in zip(*totRecords)] - totStats = [sum(e) for e in zip(*totStats)] - totalRow = ['Total ({0})'.format(len(table))] - totalRow.extend(getRow(totRecords, totStats, pr)) - - if len(data) > 1: - table.append(totalRow) - table.insert(0, labels) - - if args.tableFormat != 'klee': - print(tabulate( - table, headers='firstrow', - tablefmt=args.tableFormat, - floatfmt='.{p}f'.format(p=2), - numalign='right', stralign='center')) - else: - stream = tabulate( - table, headers='firstrow', - tablefmt=KleeTable, - floatfmt='.{p}f'.format(p=2), - numalign='right', stralign='center') - # add a line separator before the total line - if len(data) > 1: - stream = stream.splitlines() - stream.insert(-2, stream[-1]) - stream = '\n'.join(stream) - print(stream) + write_table(args, data, dirs, pr) if __name__ == '__main__': |