blob: 1bf8e502893061f60c8aaf0d105f83e34567464b [file] [log] [blame]
#!/usr/bin/env python2.7
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from __future__ import print_function
import argparse
import itertools
import json
import os
import sys
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
SCRIPTS_DIR = os.path.dirname(SCRIPT_DIR)
FUCHSIA_ROOT = os.path.dirname(SCRIPTS_DIR)
sys.path.append(os.path.join(FUCHSIA_ROOT, 'build', 'images'))
import elfinfo
# The maximum number of size percentage points a binary is allowed to drop.
# A greater amount will raise a flag.
MAX_SIZE_DECREASE = 10
# The maximum number of size percentage points a binary is allowed to gain.
# A greater amount will raise a flag.
MAX_SIZE_INCREASE = 1
class Type(object):
AUX = 'aux'
IMAGE = 'image'
TESTS = 'tests'
@classmethod
def all(cls): return [cls.AUX, cls.IMAGE, cls.TESTS]
class Origin(object):
LEGACY = 'legacy'
MIGRATED = 'migrated'
@classmethod
def all(cls): return [cls.LEGACY, cls.MIGRATED]
class Manifest(object):
'''Lists the contents of a manifest file'''
def __init__(self, origin, type, contents):
self.origin = origin
self.type = type
self.contents = contents
def __repr__(self):
return 'M[%s-%s]' % (self.origin, self.type)
class CustomJSONEncoder(json.JSONEncoder):
'''A JSON encoder that handles sets and sorts lists.'''
def default(self, object):
if isinstance(object, FileDataSet) or isinstance(object, FileData):
return object.to_json()
return json.JSONEncoder.default(self, object)
class FileData(object):
'''Represents a file referred to in a manifest.'''
def __init__(self, path, size=None, libs=None):
self.path = path
self.size = size if size else os.path.getsize(path)
if libs != None:
self.libs = set(libs)
else:
info = elfinfo.get_elf_info(path)
self.libs = info.needed if info else set()
def __eq__(self, other):
return self.path == other.path
def __ne__(self, other):
return not self.__eq__(other)
def __hash__(self):
return len(hash(self.path))
def __repr__(self):
return 'F[' + self.path + ']'
def to_json(self):
return {
'path': self.path,
'size': self.size,
'libs': sorted(self.libs),
}
@classmethod
def from_json(cls, input):
return FileData(input['path'], input['size'], input['libs'])
class FileDataSet(object):
'''Represents a set of files.'''
def __init__(self):
# map { name --> FileData }
self.files = {}
def add(self, name, file):
if name == 'lib/libdriver.so':
# libdriver is a complicated hydra whose many heads we don't need to
# worry about here.
return
if name in self.files and file != self.files[name]:
print('Error: different file under path ' + name + ':')
print(' - ' + str(file))
print(' - ' + str(self.files[name]))
return
self.files[name] = file
def filenames(self):
return set(self.files.keys())
def get_file(self, name):
return self.files[name]
def __len__(self):
return len(self.files)
def to_json(self):
return self.files
@classmethod
def from_json(cls, input):
result = FileDataSet()
for name, data in input.iteritems():
result.add(name, FileData.from_json(data))
return result
class Summary(object):
'''Data for a particular state of the build.'''
def __init__(self):
# map { type --> FileDataSet }
self.objects = {}
def add_objects(self, type, objects):
dataset = self.objects.setdefault(type, FileDataSet())
for name, path in objects.iteritems():
dataset.add(name, FileData(path))
def get_objects(self, type):
return self.objects[type]
def __repr__(self):
items = ['%s=%s' % (t, len(o)) for (t, o) in self.objects.iteritems()]
return 'S[' + ', '.join(items) + ']'
def to_json(self, output):
json.dump(self.objects, output, cls=CustomJSONEncoder, indent=2,
sort_keys=True, separators=(',', ': '))
@classmethod
def from_json(cls, input):
result = Summary()
data = json.load(input)
for type in Type.all():
result.objects[type] = FileDataSet.from_json(data[type])
return result
def generate_summary(manifests, base_dir):
'''Generates a summary based on the manifests found in the build.'''
result = Summary()
for type in Type.all():
for manifest in filter(lambda m: m.type == type, manifests):
contents = manifest.contents.copy()
contents = dict([(n, os.path.join(base_dir, p))
for (n, p) in contents.iteritems()])
result.add_objects(type, contents)
return result
def report(manifest, is_error, message):
type = 'Error' if is_error else 'Warning'
print('%s%s%s' % (type.ljust(10), manifest.ljust(8), message))
def print_size(value):
for unit in ['B', 'K', 'M', 'G']:
if abs(value) < 1024.0:
return '%3.1f%s' % (value, unit)
value /= 1024.0
return '%.1f%s' % (value, 'T')
def compare_summaries(reference, current):
'''Compares summaries for two states of the build.'''
has_errors = False
has_warnings = False
for type in Type.all():
reference_objects = reference.get_objects(type)
current_objects = current.get_objects(type)
reference_names = reference_objects.filenames()
current_names = current_objects.filenames()
# Missing and new files.
if reference_names != current_names:
has_errors = True
for element in reference_names - current_names:
report(type, True, 'element removed: ' + element)
for element in current_names - reference_names:
report(type, True, 'element added: ' + element)
# Size changes.
for name in reference_names & current_names:
reference_size = reference_objects.get_file(name).size
current_size = current_objects.get_file(name).size
if current_size == reference_size:
continue
is_diff_positive = current_size > reference_size
diff_percentage = 100 * (current_size - reference_size) / reference_size
if (diff_percentage < -MAX_SIZE_DECREASE or
diff_percentage > MAX_SIZE_INCREASE):
has_errors = True
is_error = True
else:
has_warnings = True
is_error = False
report(type, is_error, 'size change for ' + name + ': ' +
('+' if is_diff_positive else '-') +
str(abs(diff_percentage)) + '% (' +
print_size(current_size) + ')')
# Linking changes.
for name in reference_names & current_names:
reference_libs = reference_objects.get_file(name).libs
current_libs = current_objects.get_file(name).libs
if current_libs == reference_libs:
continue
for lib in reference_libs - current_libs:
has_errors = True
report(type, True, 'shared library removed from ' + name +
': ' + lib)
for lib in current_libs - reference_libs:
if (lib == 'libc++abi.so.1' or
lib == 'libdevmgr-launcher.so' or
lib == 'libdevmgr-integration-test.so' or
lib == 'libdriver-integration-test.so'):
is_error = False
has_warnings = True
else:
is_error = True
has_errors = True
report(type, is_error, 'shared library added to ' + name +
': ' + lib)
if has_errors:
print('Error: summaries do not match!')
return False
if not has_warnings:
print('<none>')
return True
def main():
parser = argparse.ArgumentParser(
description='Performs verifications after moving an element from '
'ZN to GN.')
parser.add_argument('--build-dir',
help='path to the GN build dir',
default=os.path.join(FUCHSIA_ROOT, 'out', 'default'))
parser.add_argument('--summary',
help='path to the summary file to generate')
parser.add_argument('--reference',
help='path to the summary file to compare against')
args = parser.parse_args()
if not args.summary and not args.reference:
print('At least one of --summary or --reference needs to be set.')
parser.print_help()
return 1
# Load up manifests from the current build.
manifests = []
for origin in Origin.all():
for type in Type.all():
path = os.path.join(args.build_dir, 'obj', 'build', 'unification',
'images',
'%s-%s.unification.manifest' % (origin, type))
with open(path, 'r') as manifest_file:
contents = dict(map(lambda line: line.strip().split('=', 1),
manifest_file.readlines()))
manifests.append(Manifest(origin, type, contents))
# Generate a summary for the current build.
summary = generate_summary(manifests, args.build_dir)
# If applicable, save the current build's summary.
if args.summary:
dirname = os.path.dirname(args.summary)
if not os.path.exists(dirname):
os.makedirs(dirname)
with open(args.summary, 'w') as output_file:
summary.to_json(output_file)
# If applicable, compare the current summary to a previously-saved one.
if args.reference:
with open(args.reference, 'r') as input_file:
reference = Summary.from_json(input_file)
if not compare_summaries(reference, summary):
return 1
return 0
if __name__ == '__main__':
sys.exit(main())