145 lines
5.3 KiB
Python
Executable File
145 lines
5.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Copyright (C) 2016 Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
# TODO (improvements)
|
|
# - support K,M,G size suffixes for threshold
|
|
# - output CSV file in addition to stdout reporting
|
|
|
|
import csv
|
|
import argparse
|
|
import sys
|
|
|
|
|
|
def read_file_size_csv(inputf, detail=None):
|
|
"""Extract package or file sizes from CSV file into size dictionary"""
|
|
sizes = {}
|
|
reader = csv.reader(inputf)
|
|
|
|
header = next(reader)
|
|
if header[0] != 'File name' or header[1] != 'Package name' or \
|
|
header[2] != 'File size' or header[3] != 'Package size':
|
|
print(("Input file %s does not contain the expected header. Are you "
|
|
"sure this file corresponds to the file-size-stats.csv "
|
|
"file created by 'make graph-size'?") % inputf.name)
|
|
sys.exit(1)
|
|
|
|
for row in reader:
|
|
if detail:
|
|
sizes[(row[0], row[1])] = int(row[2])
|
|
else:
|
|
sizes[(None, row[1])] = int(row[3])
|
|
|
|
return sizes
|
|
|
|
|
|
def compare_sizes(old, new):
|
|
"""Return delta/added/removed dictionaries based on two input size
|
|
dictionaries"""
|
|
delta = {}
|
|
oldkeys = set(old.keys())
|
|
newkeys = set(new.keys())
|
|
|
|
# packages/files in both
|
|
for entry in newkeys.intersection(oldkeys):
|
|
delta[entry] = ('', new[entry] - old[entry])
|
|
# packages/files only in new
|
|
for entry in newkeys.difference(oldkeys):
|
|
delta[entry] = ('added', new[entry])
|
|
# packages/files only in old
|
|
for entry in oldkeys.difference(newkeys):
|
|
delta[entry] = ('removed', -old[entry])
|
|
|
|
return delta
|
|
|
|
|
|
def print_results(result, threshold):
|
|
"""Print the given result dictionary sorted by size, ignoring any entries
|
|
below or equal to threshold"""
|
|
|
|
from six import iteritems
|
|
list_result = list(iteritems(result))
|
|
# result is a dictionary: (filename, pkgname) -> (flag, size difference)
|
|
# list_result is a list of tuples: ((filename, pkgname), (flag, size difference))
|
|
# filename may be None if no detail is requested.
|
|
|
|
maxpkgname = max(len(pkgname) for filename, pkgname in result)
|
|
|
|
for entry in sorted(list_result, key=lambda entry: entry[1][1]):
|
|
data = dict(
|
|
filename=entry[0][0],
|
|
pkgname=entry[0][1],
|
|
action=entry[1][0],
|
|
size=entry[1][1],
|
|
maxpkgname=maxpkgname,
|
|
)
|
|
|
|
if threshold is not None and abs(data['size']) <= threshold:
|
|
continue
|
|
if data['filename']:
|
|
print('{size:12d} {action:7s} {pkgname:{maxpkgname}s} {filename}'.format(**data))
|
|
else:
|
|
print('{size:12d} {action:7s} {pkgname}'.format(**data))
|
|
|
|
|
|
# main #########################################################################
|
|
|
|
description = """
|
|
Compare rootfs size between Buildroot compilations, for example after changing
|
|
configuration options or after switching to another Buildroot release.
|
|
|
|
This script compares the file-size-stats.csv file generated by 'make graph-size'
|
|
with the corresponding file from another Buildroot compilation.
|
|
The size differences can be reported per package or per file.
|
|
Size differences smaller or equal than a given threshold can be ignored.
|
|
"""
|
|
|
|
parser = argparse.ArgumentParser(description=description,
|
|
formatter_class=argparse.RawDescriptionHelpFormatter)
|
|
|
|
parser.add_argument('-d', '--detail', action='store_true',
|
|
help='''report differences for individual files rather than
|
|
packages''')
|
|
parser.add_argument('-t', '--threshold', type=int,
|
|
help='''ignore size differences smaller or equal than this
|
|
value (bytes)''')
|
|
parser.add_argument('old_file_size_csv', type=argparse.FileType('r'),
|
|
metavar='old-file-size-stats.csv',
|
|
help="""old CSV file with file and package size statistics,
|
|
generated by 'make graph-size'""")
|
|
parser.add_argument('new_file_size_csv', type=argparse.FileType('r'),
|
|
metavar='new-file-size-stats.csv',
|
|
help='new CSV file with file and package size statistics')
|
|
args = parser.parse_args()
|
|
|
|
if args.detail:
|
|
keyword = 'file'
|
|
else:
|
|
keyword = 'package'
|
|
|
|
old_sizes = read_file_size_csv(args.old_file_size_csv, args.detail)
|
|
new_sizes = read_file_size_csv(args.new_file_size_csv, args.detail)
|
|
|
|
delta = compare_sizes(old_sizes, new_sizes)
|
|
|
|
print('Size difference per %s (bytes), threshold = %s' % (keyword, args.threshold))
|
|
print(80*'-')
|
|
print_results(delta, args.threshold)
|
|
print(80*'-')
|
|
print_results({(None, 'TOTAL'): ('', sum(new_sizes.values()) - sum(old_sizes.values()))},
|
|
threshold=None)
|