summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-02-15 02:46:06 +0100
committerMattia Rizzolo <mattia@mapreri.org>2015-02-15 17:42:28 +0100
commit3ae0af9d95b3b4f6bd7e9e4f43f153ff9b40d345 (patch)
tree20f28ef85cf61396272ec2d4a3833b35b1a4c41e /bin
parent62bc3718369e2f5cc9e53f6c5b80db2945690c27 (diff)
downloadjenkins.debian.net-3ae0af9d95b3b4f6bd7e9e4f43f153ff9b40d345.tar.xz
reproducible: common: speed up get_bugs() by creating two bugs_have_patches() and are_virtual_packages(), plural version of existing methods, thus avoiding hundred of udd queries on every run
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.py35
1 files changed, 30 insertions, 5 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py
index d26574ad..4a243452 100755
--- a/bin/reproducible_common.py
+++ b/bin/reproducible_common.py
@@ -261,12 +261,32 @@ def is_virtual_package(package):
return False
return True
+
+def are_virtual_packages(packages):
+ pkgs = "source='" + "' OR source='".join(packages) + "'"
+ query = 'SELECT source FROM sources WHERE %s' % pkgs
+ rows = query_udd(query)
+ result = {x: False for x in packages if (x,) in rows}
+ result.update({x: True for x in packages if (x,) not in rows})
+ return result
+
+
def bug_has_patch(bug):
query = """SELECT id FROM bugs_tags WHERE id=%s AND tag='patch'""" % bug
if len(query_udd(query)) > 0:
return True
return False
+
+def bugs_have_patches(bugs):
+ '''
+ This returns a list of tuples where every tuple has a bug with patch
+ '''
+ bugs = 'id=' + ' OR id='.join(bugs)
+ query = """SELECT id FROM bugs_tags WHERE (%s) AND tag='patch'""" % bugs
+ return query_udd(query)
+
+
def package_has_notes(package):
# not a really serious check, it'd be better to check the yaml file
path = NOTES_PATH + '/' + package + '_note.html'
@@ -275,6 +295,7 @@ def package_has_notes(package):
else:
return False
+
def join_status_icon(status, package=None, version=None):
table = {'reproducible' : 'weather-clear.png',
'FTBFS': 'weather-storm.png',
@@ -357,17 +378,23 @@ def get_bugs():
log.info("finding out which usertagged bugs have been closed or at least have patches")
packages = {}
+ bugs = [str(x[0]) for x in rows]
+ bugs_patches = bugs_have_patches(bugs)
+
+ pkgs = [str(x[1]) for x in rows]
+ pkgs_real = are_virtual_packages(pkgs)
+
for bug in rows:
if bug[1] not in packages:
packages[bug[1]] = {}
# bug[0] = bug_id, bug[1] = source_name, bug[2] = who_when_done
- if is_virtual_package(bug[1]):
- continue
+ if pkgs_real[str(bug[1])]:
+ continue # package is virtual, I don't care about virtual pkgs
packages[bug[1]][bug[0]] = {'done': False, 'patch': False}
if bug[2]: # if the bug is done
packages[bug[1]][bug[0]]['done'] = True
try:
- if bug_has_patch(bug[0]):
+ if (bug,) in bugs_patches:
packages[bug[1]][bug[0]]['patch'] = True
except KeyError:
log.error('item: ' + str(bug))
@@ -406,5 +433,3 @@ log.info('Total reproducible packages:\t' + str(count_good))
log.info('That means that out of the ' + str(percent_total) + '% of ' +
'the Sid tested packages the ' + str(percent_good) + '% are ' +
'reproducible!')
-
-