]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - utils/size-stats-compare
ltrace: fix visibility of Config.in comment
[coffee/buildroot.git] / utils / size-stats-compare
1 #!/usr/bin/env python
2
3 # Copyright (C) 2016 Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
19 # TODO (improvements)
20 # - support K,M,G size suffixes for threshold
21 # - output CSV file in addition to stdout reporting
22
23 import csv
24 import argparse
25 import sys
26
27
28 def read_file_size_csv(inputf, detail=None):
29     """Extract package or file sizes from CSV file into size dictionary"""
30     sizes = {}
31     reader = csv.reader(inputf)
32
33     header = next(reader)
34     if header[0] != 'File name' or header[1] != 'Package name' or \
35        header[2] != 'File size' or header[3] != 'Package size':
36         print(("Input file %s does not contain the expected header. Are you "
37                "sure this file corresponds to the file-size-stats.csv "
38                "file created by 'make graph-size'?") % inputf.name)
39         sys.exit(1)
40
41     for row in reader:
42         if detail:
43             sizes[row[0]] = int(row[2])
44         else:
45             sizes[row[1]] = int(row[3])
46
47     return sizes
48
49
50 def compare_sizes(old, new):
51     """Return delta/added/removed dictionaries based on two input size
52     dictionaries"""
53     delta = {}
54     oldkeys = set(old.keys())
55     newkeys = set(new.keys())
56
57     # packages/files in both
58     for entry in newkeys.intersection(oldkeys):
59         delta[entry] = ('', new[entry] - old[entry])
60     # packages/files only in new
61     for entry in newkeys.difference(oldkeys):
62         delta[entry] = ('added', new[entry])
63     # packages/files only in old
64     for entry in oldkeys.difference(newkeys):
65         delta[entry] = ('removed', -old[entry])
66
67     return delta
68
69
70 def print_results(result, threshold):
71     """Print the given result dictionary sorted by size, ignoring any entries
72     below or equal to threshold"""
73
74     from six import iteritems
75     list_result = list(iteritems(result))
76     # result is a dictionary: name -> (flag, size difference)
77     # list_result is a list of tuples: (name, (flag, size difference))
78
79     for entry in sorted(list_result, key=lambda entry: entry[1][1]):
80         if threshold is not None and abs(entry[1][1]) <= threshold:
81             continue
82         print('%12s %7s %s' % (entry[1][1], entry[1][0], entry[0]))
83
84
85 # main #########################################################################
86
87 description = """
88 Compare rootfs size between Buildroot compilations, for example after changing
89 configuration options or after switching to another Buildroot release.
90
91 This script compares the file-size-stats.csv file generated by 'make graph-size'
92 with the corresponding file from another Buildroot compilation.
93 The size differences can be reported per package or per file.
94 Size differences smaller or equal than a given threshold can be ignored.
95 """
96
97 parser = argparse.ArgumentParser(description=description,
98                                  formatter_class=argparse.RawDescriptionHelpFormatter)
99
100 parser.add_argument('-d', '--detail', action='store_true',
101                     help='''report differences for individual files rather than
102                             packages''')
103 parser.add_argument('-t', '--threshold', type=int,
104                     help='''ignore size differences smaller or equal than this
105                             value (bytes)''')
106 parser.add_argument('old_file_size_csv', type=argparse.FileType('r'),
107                     metavar='old-file-size-stats.csv',
108                     help="""old CSV file with file and package size statistics,
109                             generated by 'make graph-size'""")
110 parser.add_argument('new_file_size_csv', type=argparse.FileType('r'),
111                     metavar='new-file-size-stats.csv',
112                     help='new CSV file with file and package size statistics')
113 args = parser.parse_args()
114
115 if args.detail:
116     keyword = 'file'
117 else:
118     keyword = 'package'
119
120 old_sizes = read_file_size_csv(args.old_file_size_csv, args.detail)
121 new_sizes = read_file_size_csv(args.new_file_size_csv, args.detail)
122
123 delta = compare_sizes(old_sizes, new_sizes)
124
125 print('Size difference per %s (bytes), threshold = %s' % (keyword, args.threshold))
126 print(80*'-')
127 print_results(delta, args.threshold)
128 print(80*'-')
129 print_results({'TOTAL': ('', sum(new_sizes.values()) - sum(old_sizes.values()))},
130               threshold=None)