From: Michael Smith Date: Sat, 27 Jun 2009 21:23:33 +0000 (-0400) Subject: oe-checksums-sorter.py: speed up about 4X using a hash X-Git-Tag: Release-2010-05/1~2665 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1eb3a77d18748635f38804b78390fc09993c4475;p=openembedded.git oe-checksums-sorter.py: speed up about 4X using a hash OK, this saves a grand total of one second a few times a week, but it was bugging me... Signed-off-by: Michael Smith --- diff --git a/contrib/source-checker/oe-checksums-sorter.py b/contrib/source-checker/oe-checksums-sorter.py index cde6ddc73e..3707dba2d2 100755 --- a/contrib/source-checker/oe-checksums-sorter.py +++ b/contrib/source-checker/oe-checksums-sorter.py @@ -88,18 +88,18 @@ if inplace: checksums_parser = ConfigParser.ConfigParser() checksums_parser.readfp(infp) -item = 1; -files_total = len(checksums_parser.sections()) - new_list = [] +seen = {} for source in checksums_parser.sections(): archive = source.split("/")[-1] md5 = checksums_parser.get(source, "md5") sha = checksums_parser.get(source, "sha256") - if new_list.count([archive, source, md5, sha]) < 1: - new_list += [[archive, source, md5, sha]] + tup = (archive, source, md5, sha) + if not seen.has_key(tup): + new_list.append(tup) + seen[tup] = 1 new_list.sort()