]> git.decadent.org.uk Git - dak.git/blob - rhona
katie.py: update to +bX binNMU versioning
[dak.git] / rhona
1 #!/usr/bin/env python
2
3 # rhona, cleans up unassociated binary and source packages
4 # Copyright (C) 2000, 2001, 2002, 2003  James Troup <james@nocrew.org>
5 # $Id: rhona,v 1.27 2003-09-07 13:52:20 troup Exp $
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
21 ################################################################################
22
23 # 07:05|<elmo> well.. *shrug*.. no, probably not.. but to fix it,
24 #      |       we're going to have to implement reference counting
25 #      |       through dependencies.. do we really want to go down
26 #      |       that road?
27 #
28 # 07:05|<Culus> elmo: Augh! <brain jumps out of skull>
29
30 ################################################################################
31
32 import os, pg, stat, sys, time
33 import apt_pkg
34 import utils
35
36 ################################################################################
37
38 projectB = None;
39 Cnf = None;
40 Options = None;
41 now_date = None;     # mark newly "deleted" things as deleted "now"
42 delete_date = None;  # delete things marked "deleted" earler than this
43
44 ################################################################################
45
46 def usage (exit_code=0):
47     print """Usage: rhona [OPTIONS]
48 Clean old packages from suites.
49
50   -n, --no-action            don't do anything
51   -h, --help                 show this help and exit"""
52     sys.exit(exit_code)
53
54 ################################################################################
55
56 def check_binaries():
57     global delete_date, now_date;
58
59     print "Checking for orphaned binary packages..."
60
61     # Get the list of binary packages not in a suite and mark them for
62     # deletion.
63     q = projectB.query("""
64 SELECT b.file FROM binaries b, files f
65  WHERE f.last_used IS NULL AND b.file = f.id
66    AND NOT EXISTS (SELECT 1 FROM bin_associations ba WHERE ba.bin = b.id)""");
67     ql = q.getresult();
68
69     projectB.query("BEGIN WORK");
70     for i in ql:
71         file_id = i[0];
72         projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s AND last_used IS NULL" % (now_date, file_id))
73     projectB.query("COMMIT WORK");
74
75     # Check for any binaries which are marked for eventual deletion
76     # but are now used again.
77     q = projectB.query("""
78 SELECT b.file FROM binaries b, files f
79    WHERE f.last_used IS NOT NULL AND f.id = b.file
80     AND EXISTS (SELECT 1 FROM bin_associations ba WHERE ba.bin = b.id)""");
81     ql = q.getresult();
82
83     projectB.query("BEGIN WORK");
84     for i in ql:
85         file_id = i[0];
86         projectB.query("UPDATE files SET last_used = NULL WHERE id = %s" % (file_id));
87     projectB.query("COMMIT WORK");
88
89 ########################################
90
91 def check_sources():
92     global delete_date, now_date;
93
94     print "Checking for orphaned source packages..."
95
96     # Get the list of source packages not in a suite and not used by
97     # any binaries.
98     q = projectB.query("""
99 SELECT s.id, s.file FROM source s, files f
100   WHERE f.last_used IS NULL AND s.file = f.id
101     AND NOT EXISTS (SELECT 1 FROM src_associations sa WHERE sa.source = s.id)
102     AND NOT EXISTS (SELECT 1 FROM binaries b WHERE b.source = s.id)""");
103
104     #### XXX: this should ignore cases where the files for the binary b
105     ####      have been marked for deletion (so the delay between bins go
106     ####      byebye and sources go byebye is 0 instead of StayOfExecution)
107
108     ql = q.getresult();
109
110     projectB.query("BEGIN WORK");
111     for i in ql:
112         source_id = i[0];
113         dsc_file_id = i[1];
114
115         # Mark the .dsc file for deletion
116         projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s AND last_used IS NULL" % (now_date, dsc_file_id))
117         # Mark all other files references by .dsc too if they're not used by anyone else
118         x = projectB.query("SELECT f.id FROM files f, dsc_files d WHERE d.source = %s AND d.file = f.id" % (source_id));
119         for j in x.getresult():
120             file_id = j[0];
121             y = projectB.query("SELECT id FROM dsc_files d WHERE d.file = %s" % (file_id));
122             if len(y.getresult()) == 1:
123                 projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s AND last_used IS NULL" % (now_date, file_id));
124     projectB.query("COMMIT WORK");
125
126     # Check for any sources which are marked for deletion but which
127     # are now used again.
128
129     q = projectB.query("""
130 SELECT f.id FROM source s, files f, dsc_files df
131   WHERE f.last_used IS NOT NULL AND s.id = df.source AND df.file = f.id
132     AND ((EXISTS (SELECT 1 FROM src_associations sa WHERE sa.source = s.id))
133       OR (EXISTS (SELECT 1 FROM binaries b WHERE b.source = s.id)))""");
134
135     #### XXX: this should also handle deleted binaries specially (ie, not
136     ####      reinstate sources because of them
137
138     ql = q.getresult();
139     # Could be done in SQL; but left this way for hysterical raisins
140     # [and freedom to innovate don'cha know?]
141     projectB.query("BEGIN WORK");
142     for i in ql:
143         file_id = i[0];
144         projectB.query("UPDATE files SET last_used = NULL WHERE id = %s" % (file_id));
145     projectB.query("COMMIT WORK");
146
147 ########################################
148
149 def check_files():
150     global delete_date, now_date;
151
152     # FIXME: this is evil; nothing should ever be in this state.  if
153     # they are, it's a bug and the files should not be auto-deleted.
154
155     return;
156
157     print "Checking for unused files..."
158     q = projectB.query("""
159 SELECT id FROM files f
160   WHERE NOT EXISTS (SELECT 1 FROM binaries b WHERE b.file = f.id)
161     AND NOT EXISTS (SELECT 1 FROM dsc_files df WHERE df.file = f.id)""");
162
163     projectB.query("BEGIN WORK");
164     for i in q.getresult():
165         file_id = i[0];
166         projectB.query("UPDATE files SET last_used = '%s' WHERE id = %s" % (now_date, file_id));
167     projectB.query("COMMIT WORK");
168
169 def clean_binaries():
170     global delete_date, now_date;
171
172     # We do this here so that the binaries we remove will have their
173     # source also removed (if possible).
174
175     # XXX: why doesn't this remove the files here as well? I don't think it
176     #      buys anything keeping this separate
177     print "Cleaning binaries from the DB..."
178     if not Options["No-Action"]:
179         before = time.time();
180         sys.stdout.write("[Deleting from binaries table... ");
181         projectB.query("DELETE FROM binaries WHERE EXISTS (SELECT 1 FROM files WHERE binaries.file = files.id AND files.last_used <= '%s')" % (delete_date));
182         sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before)));
183
184 ########################################
185
186 def clean():
187     global delete_date, now_date;
188     count = 0;
189     size = 0;
190
191     print "Cleaning out packages..."
192
193     date = time.strftime("%Y-%m-%d");
194     dest = Cnf["Dir::Morgue"] + '/' + Cnf["Rhona::MorgueSubDir"] + '/' + date;
195     if not os.path.exists(dest):
196         os.mkdir(dest);
197
198     # Delete from source
199     if not Options["No-Action"]:
200         before = time.time();
201         sys.stdout.write("[Deleting from source table... ");
202         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));
203         projectB.query("DELETE FROM source WHERE EXISTS (SELECT 1 FROM files WHERE source.file = files.id AND files.last_used <= '%s')" % (delete_date));
204         sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before)));
205
206     # Delete files from the pool
207     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));
208     for i in q.getresult():
209         filename = i[0] + i[1];
210         if not os.path.exists(filename):
211             utils.warn("can not find '%s'." % (filename));
212             continue;
213         if os.path.isfile(filename):
214             if os.path.islink(filename):
215                 count += 1;
216                 if Options["No-Action"]:
217                     print "Removing symlink %s..." % (filename);
218                 else:
219                     os.unlink(filename);
220             else:
221                 size += os.stat(filename)[stat.ST_SIZE];
222                 count += 1;
223
224                 dest_filename = dest + '/' + os.path.basename(filename);
225                 # If the destination file exists; try to find another filename to use
226                 if os.path.exists(dest_filename):
227                     dest_filename = utils.find_next_free(dest_filename);
228
229                 if Options["No-Action"]:
230                     print "Cleaning %s -> %s ..." % (filename, dest_filename);
231                 else:
232                     utils.move(filename, dest_filename);
233         else:
234             utils.fubar("%s is neither symlink nor file?!" % (filename));
235
236     # Delete from the 'files' table
237     if not Options["No-Action"]:
238         before = time.time();
239         sys.stdout.write("[Deleting from files table... ");
240         projectB.query("DELETE FROM files WHERE last_used <= '%s'" % (delete_date));
241         sys.stdout.write("done. (%d seconds)]\n" % (int(time.time()-before)));
242     if count > 0:
243         sys.stderr.write("Cleaned %d files, %s.\n" % (count, utils.size_type(size)));
244
245 ################################################################################
246
247 def clean_maintainers():
248     print "Cleaning out unused Maintainer entries..."
249
250     q = projectB.query("""
251 SELECT m.id FROM maintainer m
252   WHERE NOT EXISTS (SELECT 1 FROM binaries b WHERE b.maintainer = m.id)
253     AND NOT EXISTS (SELECT 1 FROM source s WHERE s.maintainer = m.id)""");
254     ql = q.getresult();
255
256     count = 0;
257     projectB.query("BEGIN WORK");
258     for i in ql:
259         maintainer_id = i[0];
260         if not Options["No-Action"]:
261             projectB.query("DELETE FROM maintainer WHERE id = %s" % (maintainer_id));
262             count += 1;
263     projectB.query("COMMIT WORK");
264
265     if count > 0:
266         sys.stderr.write("Cleared out %d maintainer entries.\n" % (count));
267
268 ################################################################################
269
270 def clean_fingerprints():
271     print "Cleaning out unused fingerprint entries..."
272
273     q = projectB.query("""
274 SELECT f.id FROM fingerprint f
275   WHERE NOT EXISTS (SELECT 1 FROM binaries b WHERE b.sig_fpr = f.id)
276     AND NOT EXISTS (SELECT 1 FROM source s WHERE s.sig_fpr = f.id)""");
277     ql = q.getresult();
278
279     count = 0;
280     projectB.query("BEGIN WORK");
281     for i in ql:
282         fingerprint_id = i[0];
283         if not Options["No-Action"]:
284             projectB.query("DELETE FROM fingerprint WHERE id = %s" % (fingerprint_id));
285             count += 1;
286     projectB.query("COMMIT WORK");
287
288     if count > 0:
289         sys.stderr.write("Cleared out %d fingerprint entries.\n" % (count));
290
291 ################################################################################
292
293 def clean_accepted_autobuild():
294     global now_date;
295
296     if not Cnf.ValueList("Dinstall::AcceptedAutoBuildSuites") or Options["No-Action"]:
297         return;
298
299     print "Cleaning out accepted autobuild symlinks..."
300
301     our_delete_date = time.strftime("%Y-%m-%d %H:%M", time.localtime(time.time()-int(Cnf["Rhona::AcceptedAutoBuildStayOfExecution"])));
302     count = 0;
303
304     q = projectB.query("SELECT filename FROM accepted_autobuild WHERE last_used <= '%s'" % (our_delete_date));
305     for i in q.getresult():
306         filename = i[0];
307         if not os.path.exists(filename):
308             utils.warn("%s (from accepted_autobuild) doesn't exist." % (filename));
309             continue;
310         if not Cnf.FindB("Dinstall::SecurityAcceptedAutoBuild") and not os.path.islink(filename):
311             utils.fubar("%s (from accepted_autobuild) should be a symlink but isn't." % (filename));
312         os.unlink(filename);
313         count += 1;
314     projectB.query("DELETE FROM accepted_autobuild WHERE last_used <= '%s'" % (our_delete_date));
315
316     if count:
317         sys.stderr.write("Cleaned %d accepted-autobuild files.\n" % (count));
318
319 ################################################################################
320
321 def main():
322     global Cnf, Options, projectB, delete_date, now_date;
323
324     Cnf = utils.get_conf()
325     for i in ["Help", "No-Action" ]:
326         if not Cnf.has_key("Rhona::Options::%s" % (i)):
327             Cnf["Rhona::Options::%s" % (i)] = "";
328
329     Arguments = [('h',"help","Rhona::Options::Help"),
330                  ('n',"no-action","Rhona::Options::No-Action")];
331
332     apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
333     Options = Cnf.SubTree("Rhona::Options")
334
335     if Options["Help"]:
336         usage();
337
338     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
339
340     now_date = time.strftime("%Y-%m-%d %H:%M");
341     delete_date = time.strftime("%Y-%m-%d %H:%M", time.localtime(time.time()-int(Cnf["Rhona::StayOfExecution"])));
342
343     check_binaries();
344     clean_binaries();
345     check_sources();
346     check_files();
347     clean();
348     clean_maintainers();
349     clean_fingerprints();
350     clean_accepted_autobuild();
351
352 ################################################################################
353
354 if __name__ == '__main__':
355     main()
356