X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fclean_suites.py;h=d6a966b554f623cb251e2d8cc69c85bda062f5b7;hb=b612f3da207fa0d75a5d3b204ac8f02bb244231a;hp=fdbcf26da1347c1d209d65cab0257611b2730142;hpb=59fd5aa2a8be3b76dbc968429c457f096adfa472;p=dak.git diff --git a/dak/clean_suites.py b/dak/clean_suites.py index fdbcf26d..d6a966b5 100755 --- a/dak/clean_suites.py +++ b/dak/clean_suites.py @@ -1,8 +1,7 @@ #!/usr/bin/env python -# rhona, cleans up unassociated binary and source packages -# Copyright (C) 2000, 2001, 2002, 2003 James Troup -# $Id: rhona,v 1.29 2005-11-25 06:59:45 ajt Exp $ +""" Cleans up unassociated binary and source packages """ +# Copyright (C) 2000, 2001, 2002, 2003, 2006 James Troup # 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 @@ -31,30 +30,32 @@ import os, pg, stat, sys, time import apt_pkg -import utils +from daklib import utils ################################################################################ -projectB = None; -Cnf = None; -Options = None; +projectB = None +Cnf = None +Options = None now_date = None; # mark newly "deleted" things as deleted "now" delete_date = None; # delete things marked "deleted" earler than this +max_delete = None ################################################################################ def usage (exit_code=0): - print """Usage: rhona [OPTIONS] + print """Usage: dak clean-suites [OPTIONS] Clean old packages from suites. -n, --no-action don't do anything - -h, --help show this help and exit""" + -h, --help show this help and exit + -m, --maximum maximum number of files to remove""" sys.exit(exit_code) ################################################################################ def check_binaries(): - global delete_date, now_date; + global delete_date, now_date print "Checking for orphaned binary packages..." @@ -63,33 +64,33 @@ def check_binaries(): q = projectB.query(""" SELECT b.file FROM binaries b, files f WHERE f.last_used IS NULL AND b.file = f.id - AND NOT EXISTS (SELECT 1 FROM bin_associations ba WHERE ba.bin = b.id)"""); - ql = q.getresult(); + AND NOT EXISTS (SELECT 1 FROM bin_associations ba WHERE ba.bin = b.id)""") + ql = q.getresult() - projectB.query("BEGIN WORK"); + projectB.query("BEGIN WORK") for i in ql: - file_id = i[0]; + file_id = i[0] projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s AND last_used IS NULL" % (now_date, file_id)) - projectB.query("COMMIT WORK"); + projectB.query("COMMIT WORK") # Check for any binaries which are marked for eventual deletion # but are now used again. q = projectB.query(""" SELECT b.file FROM binaries b, files f WHERE f.last_used IS NOT NULL AND f.id = b.file - AND EXISTS (SELECT 1 FROM bin_associations ba WHERE ba.bin = b.id)"""); - ql = q.getresult(); + AND EXISTS (SELECT 1 FROM bin_associations ba WHERE ba.bin = b.id)""") + ql = q.getresult() - projectB.query("BEGIN WORK"); + projectB.query("BEGIN WORK") for i in ql: - file_id = i[0]; - projectB.query("UPDATE files SET last_used = NULL WHERE id = %s" % (file_id)); - projectB.query("COMMIT WORK"); + file_id = i[0] + projectB.query("UPDATE files SET last_used = NULL WHERE id = %s" % (file_id)) + projectB.query("COMMIT WORK") ######################################## def check_sources(): - global delete_date, now_date; + global delete_date, now_date print "Checking for orphaned source packages..." @@ -99,29 +100,29 @@ def check_sources(): SELECT s.id, s.file FROM source s, files f WHERE f.last_used IS NULL AND s.file = f.id AND NOT EXISTS (SELECT 1 FROM src_associations sa WHERE sa.source = s.id) - AND NOT EXISTS (SELECT 1 FROM binaries b WHERE b.source = s.id)"""); + AND NOT EXISTS (SELECT 1 FROM binaries b WHERE b.source = s.id)""") #### XXX: this should ignore cases where the files for the binary b #### have been marked for deletion (so the delay between bins go #### byebye and sources go byebye is 0 instead of StayOfExecution) - ql = q.getresult(); + ql = q.getresult() - projectB.query("BEGIN WORK"); + projectB.query("BEGIN WORK") for i in ql: - source_id = i[0]; - dsc_file_id = i[1]; + source_id = i[0] + dsc_file_id = i[1] # Mark the .dsc file for deletion projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s AND last_used IS NULL" % (now_date, dsc_file_id)) # Mark all other files references by .dsc too if they're not used by anyone else - x = projectB.query("SELECT f.id FROM files f, dsc_files d WHERE d.source = %s AND d.file = f.id" % (source_id)); + x = projectB.query("SELECT f.id FROM files f, dsc_files d WHERE d.source = %s AND d.file = f.id" % (source_id)) for j in x.getresult(): - file_id = j[0]; - y = projectB.query("SELECT id FROM dsc_files d WHERE d.file = %s" % (file_id)); + file_id = j[0] + y = projectB.query("SELECT id FROM dsc_files d WHERE d.file = %s" % (file_id)) if len(y.getresult()) == 1: - projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s AND last_used IS NULL" % (now_date, file_id)); - projectB.query("COMMIT WORK"); + projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s AND last_used IS NULL" % (now_date, file_id)) + projectB.query("COMMIT WORK") # Check for any sources which are marked for deletion but which # are now used again. @@ -130,44 +131,44 @@ SELECT s.id, s.file FROM source s, files f SELECT f.id FROM source s, files f, dsc_files df WHERE f.last_used IS NOT NULL AND s.id = df.source AND df.file = f.id AND ((EXISTS (SELECT 1 FROM src_associations sa WHERE sa.source = s.id)) - OR (EXISTS (SELECT 1 FROM binaries b WHERE b.source = s.id)))"""); + OR (EXISTS (SELECT 1 FROM binaries b WHERE b.source = s.id)))""") #### XXX: this should also handle deleted binaries specially (ie, not #### reinstate sources because of them - ql = q.getresult(); + ql = q.getresult() # Could be done in SQL; but left this way for hysterical raisins # [and freedom to innovate don'cha know?] - projectB.query("BEGIN WORK"); + projectB.query("BEGIN WORK") for i in ql: - file_id = i[0]; - projectB.query("UPDATE files SET last_used = NULL WHERE id = %s" % (file_id)); - projectB.query("COMMIT WORK"); + file_id = i[0] + projectB.query("UPDATE files SET last_used = NULL WHERE id = %s" % (file_id)) + projectB.query("COMMIT WORK") ######################################## def check_files(): - global delete_date, now_date; + global delete_date, now_date # FIXME: this is evil; nothing should ever be in this state. if # they are, it's a bug and the files should not be auto-deleted. - return; + return print "Checking for unused files..." q = projectB.query(""" SELECT id FROM files f WHERE NOT EXISTS (SELECT 1 FROM binaries b WHERE b.file = f.id) - AND NOT EXISTS (SELECT 1 FROM dsc_files df WHERE df.file = f.id)"""); + AND NOT EXISTS (SELECT 1 FROM dsc_files df WHERE df.file = f.id)""") - projectB.query("BEGIN WORK"); + projectB.query("BEGIN WORK") for i in q.getresult(): - file_id = i[0]; - projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s" % (now_date, file_id)); - projectB.query("COMMIT WORK"); + file_id = i[0] + projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s" % (now_date, file_id)) + projectB.query("COMMIT WORK") def clean_binaries(): - global delete_date, now_date; + global delete_date, now_date # We do this here so that the binaries we remove will have their # source also removed (if possible). @@ -176,72 +177,76 @@ def clean_binaries(): # buys anything keeping this separate print "Cleaning binaries from the DB..." if not Options["No-Action"]: - before = time.time(); - sys.stdout.write("[Deleting from binaries table... "); - sys.stderr.write("DELETE FROM binaries WHERE EXISTS (SELECT 1 FROM files WHERE binaries.file = files.id AND files.last_used <= '%s')\n" % (delete_date)); - projectB.query("DELETE FROM binaries WHERE EXISTS (SELECT 1 FROM files WHERE binaries.file = files.id AND files.last_used <= '%s')" % (delete_date)); - sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before))); + before = time.time() + sys.stdout.write("[Deleting from binaries table... ") + projectB.query("DELETE FROM binaries WHERE EXISTS (SELECT 1 FROM files WHERE binaries.file = files.id AND files.last_used <= '%s')" % (delete_date)) + sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before))) ######################################## def clean(): - global delete_date, now_date; - count = 0; - size = 0; + global delete_date, now_date, max_delete + count = 0 + size = 0 print "Cleaning out packages..." - date = time.strftime("%Y-%m-%d"); - dest = Cnf["Dir::Morgue"] + '/' + Cnf["Rhona::MorgueSubDir"] + '/' + date; + date = time.strftime("%Y-%m-%d") + dest = Cnf["Dir::Morgue"] + '/' + Cnf["Clean-Suites::MorgueSubDir"] + '/' + date if not os.path.exists(dest): - os.mkdir(dest); + os.mkdir(dest) # Delete from source if not Options["No-Action"]: - before = time.time(); - sys.stdout.write("[Deleting from source table... "); - projectB.query("DELETE FROM dsc_files WHERE EXISTS (SELECT 1 FROM source s, files f, dsc_files df WHERE f.last_used <= '%s' AND s.file = f.id AND s.id = df.source AND df.id = dsc_files.id)" % (delete_date)); - projectB.query("DELETE FROM source WHERE EXISTS (SELECT 1 FROM files WHERE source.file = files.id AND files.last_used <= '%s')" % (delete_date)); - sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before))); + before = time.time() + sys.stdout.write("[Deleting from source table... ") + projectB.query("DELETE FROM dsc_files WHERE EXISTS (SELECT 1 FROM source s, files f, dsc_files df WHERE f.last_used <= '%s' AND s.file = f.id AND s.id = df.source AND df.id = dsc_files.id)" % (delete_date)) + projectB.query("DELETE FROM source WHERE EXISTS (SELECT 1 FROM files WHERE source.file = files.id AND files.last_used <= '%s')" % (delete_date)) + sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before))) # Delete files from the pool - q = projectB.query("SELECT l.path, f.filename FROM location l, files f WHERE f.last_used <= '%s' AND l.id = f.location" % (delete_date)); + query = "SELECT l.path, f.filename FROM location l, files f WHERE f.last_used <= '%s' AND l.id = f.location" % (delete_date) + if max_delete is not None: + query += " LIMIT %d" % max_delete + sys.stdout.write("Limiting removals to %d\n" % max_delete) + + q=projectB.query(query) for i in q.getresult(): - filename = i[0] + i[1]; + filename = i[0] + i[1] if not os.path.exists(filename): - utils.warn("can not find '%s'." % (filename)); - continue; + utils.warn("can not find '%s'." % (filename)) + continue if os.path.isfile(filename): if os.path.islink(filename): - count += 1; + count += 1 if Options["No-Action"]: - print "Removing symlink %s..." % (filename); + print "Removing symlink %s..." % (filename) else: - os.unlink(filename); + os.unlink(filename) else: - size += os.stat(filename)[stat.ST_SIZE]; - count += 1; + size += os.stat(filename)[stat.ST_SIZE] + count += 1 - dest_filename = dest + '/' + os.path.basename(filename); + dest_filename = dest + '/' + os.path.basename(filename) # If the destination file exists; try to find another filename to use if os.path.exists(dest_filename): - dest_filename = utils.find_next_free(dest_filename); + dest_filename = utils.find_next_free(dest_filename) if Options["No-Action"]: - print "Cleaning %s -> %s ..." % (filename, dest_filename); + print "Cleaning %s -> %s ..." % (filename, dest_filename) else: - utils.move(filename, dest_filename); + utils.move(filename, dest_filename) else: - utils.fubar("%s is neither symlink nor file?!" % (filename)); + utils.fubar("%s is neither symlink nor file?!" % (filename)) # Delete from the 'files' table if not Options["No-Action"]: - before = time.time(); - sys.stdout.write("[Deleting from files table... "); - projectB.query("DELETE FROM files WHERE last_used <= '%s'" % (delete_date)); - sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before))); + before = time.time() + sys.stdout.write("[Deleting from files table... ") + projectB.query("DELETE FROM files WHERE last_used <= '%s'" % (delete_date)) + sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before))) if count > 0: - sys.stderr.write("Cleaned %d files, %s.\n" % (count, utils.size_type(size))); + sys.stderr.write("Cleaned %d files, %s.\n" % (count, utils.size_type(size))) ################################################################################ @@ -251,20 +256,21 @@ def clean_maintainers(): q = projectB.query(""" SELECT m.id FROM maintainer m WHERE NOT EXISTS (SELECT 1 FROM binaries b WHERE b.maintainer = m.id) - AND NOT EXISTS (SELECT 1 FROM source s WHERE s.maintainer = m.id)"""); - ql = q.getresult(); + AND NOT EXISTS (SELECT 1 FROM source s WHERE s.maintainer = m.id OR s.changedby = m.id) + AND NOT EXISTS (SELECT 1 FROM src_uploaders u WHERE u.maintainer = m.id)""") + ql = q.getresult() - count = 0; - projectB.query("BEGIN WORK"); + count = 0 + projectB.query("BEGIN WORK") for i in ql: - maintainer_id = i[0]; + maintainer_id = i[0] if not Options["No-Action"]: - projectB.query("DELETE FROM maintainer WHERE id = %s" % (maintainer_id)); - count += 1; - projectB.query("COMMIT WORK"); + projectB.query("DELETE FROM maintainer WHERE id = %s" % (maintainer_id)) + count += 1 + projectB.query("COMMIT WORK") if count > 0: - sys.stderr.write("Cleared out %d maintainer entries.\n" % (count)); + sys.stderr.write("Cleared out %d maintainer entries.\n" % (count)) ################################################################################ @@ -273,85 +279,97 @@ def clean_fingerprints(): q = projectB.query(""" SELECT f.id FROM fingerprint f - WHERE NOT EXISTS (SELECT 1 FROM binaries b WHERE b.sig_fpr = f.id) - AND NOT EXISTS (SELECT 1 FROM source s WHERE s.sig_fpr = f.id)"""); - ql = q.getresult(); + WHERE f.keyring IS NULL + AND NOT EXISTS (SELECT 1 FROM binaries b WHERE b.sig_fpr = f.id) + AND NOT EXISTS (SELECT 1 FROM source s WHERE s.sig_fpr = f.id)""") + ql = q.getresult() - count = 0; - projectB.query("BEGIN WORK"); + count = 0 + projectB.query("BEGIN WORK") for i in ql: - fingerprint_id = i[0]; + fingerprint_id = i[0] if not Options["No-Action"]: - projectB.query("DELETE FROM fingerprint WHERE id = %s" % (fingerprint_id)); - count += 1; - projectB.query("COMMIT WORK"); + projectB.query("DELETE FROM fingerprint WHERE id = %s" % (fingerprint_id)) + count += 1 + projectB.query("COMMIT WORK") if count > 0: - sys.stderr.write("Cleared out %d fingerprint entries.\n" % (count)); + sys.stderr.write("Cleared out %d fingerprint entries.\n" % (count)) ################################################################################ def clean_queue_build(): - global now_date; + global now_date if not Cnf.ValueList("Dinstall::QueueBuildSuites") or Options["No-Action"]: - return; + return print "Cleaning out queue build symlinks..." - our_delete_date = time.strftime("%Y-%m-%d %H:%M", time.localtime(time.time()-int(Cnf["Rhona::QueueBuildStayOfExecution"]))); - count = 0; + our_delete_date = time.strftime("%Y-%m-%d %H:%M", time.localtime(time.time()-int(Cnf["Clean-Suites::QueueBuildStayOfExecution"]))) + count = 0 - q = projectB.query("SELECT filename FROM queue_build WHERE last_used <= '%s'" % (our_delete_date)); + q = projectB.query("SELECT filename FROM queue_build WHERE last_used <= '%s'" % (our_delete_date)) for i in q.getresult(): - filename = i[0]; + filename = i[0] if not os.path.exists(filename): - utils.warn("%s (from queue_build) doesn't exist." % (filename)); - continue; + utils.warn("%s (from queue_build) doesn't exist." % (filename)) + continue if not Cnf.FindB("Dinstall::SecurityQueueBuild") and not os.path.islink(filename): - utils.fubar("%s (from queue_build) should be a symlink but isn't." % (filename)); - os.unlink(filename); - count += 1; - projectB.query("DELETE FROM queue_build WHERE last_used <= '%s'" % (our_delete_date)); + utils.fubar("%s (from queue_build) should be a symlink but isn't." % (filename)) + os.unlink(filename) + count += 1 + projectB.query("DELETE FROM queue_build WHERE last_used <= '%s'" % (our_delete_date)) if count: - sys.stderr.write("Cleaned %d queue_build files.\n" % (count)); + sys.stderr.write("Cleaned %d queue_build files.\n" % (count)) ################################################################################ def main(): - global Cnf, Options, projectB, delete_date, now_date; + global Cnf, Options, projectB, delete_date, now_date, max_delete Cnf = utils.get_conf() - for i in ["Help", "No-Action" ]: - if not Cnf.has_key("Rhona::Options::%s" % (i)): - Cnf["Rhona::Options::%s" % (i)] = ""; - - Arguments = [('h',"help","Rhona::Options::Help"), - ('n',"no-action","Rhona::Options::No-Action")]; - - apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv); - Options = Cnf.SubTree("Rhona::Options") + for i in ["Help", "No-Action", "Maximum" ]: + if not Cnf.has_key("Clean-Suites::Options::%s" % (i)): + Cnf["Clean-Suites::Options::%s" % (i)] = "" + + Arguments = [('h',"help","Clean-Suites::Options::Help"), + ('n',"no-action","Clean-Suites::Options::No-Action"), + ('m',"maximum","Clean-Suites::Options::Maximum", "HasArg")] + + apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv) + Options = Cnf.SubTree("Clean-Suites::Options") + + if Cnf["Clean-Suites::Options::Maximum"] != "": + try: + # Only use Maximum if it's an integer + max_delete = int(Cnf["Clean-Suites::Options::Maximum"]) + if max_delete < 1: + utils.fubar("If given, Maximum must be at least 1") + except ValueError, e: + utils.fubar("If given, Maximum must be an integer") + else: + max_delete = None if Options["Help"]: - usage(); + usage() - projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"])); + projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"])) - now_date = time.strftime("%Y-%m-%d %H:%M"); - delete_date = time.strftime("%Y-%m-%d %H:%M", time.localtime(time.time()-int(Cnf["Rhona::StayOfExecution"]))); + now_date = time.strftime("%Y-%m-%d %H:%M") + delete_date = time.strftime("%Y-%m-%d %H:%M", time.localtime(time.time()-int(Cnf["Clean-Suites::StayOfExecution"]))) - check_binaries(); - clean_binaries(); - check_sources(); - check_files(); - clean(); - clean_maintainers(); - clean_fingerprints(); - clean_queue_build(); + check_binaries() + clean_binaries() + check_sources() + check_files() + clean() + clean_maintainers() + clean_fingerprints() + clean_queue_build() ################################################################################ if __name__ == '__main__': main() -