]> git.decadent.org.uk Git - dak.git/blob - dak/clean_proposed_updates.py
Stop using silly names, and migrate to a saner directory structure.
[dak.git] / dak / clean_proposed_updates.py
1 #!/usr/bin/env python
2
3 # Remove obsolete .changes files from proposed-updates
4 # Copyright (C) 2001, 2002, 2003, 2004  James Troup <james@nocrew.org>
5 # $Id: halle,v 1.13 2005-12-17 10:57:03 rmurray 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 import os, pg, re, sys;
24 import utils, db_access;
25 import apt_pkg;
26
27 ################################################################################
28
29 Cnf = None;
30 projectB = None;
31 Options = None;
32 pu = {};
33
34 re_isdeb = re.compile (r"^(.+)_(.+?)_(.+?).u?deb$");
35
36 ################################################################################
37
38 def usage (exit_code=0):
39     print """Usage: halle [OPTION] <CHANGES FILE | ADMIN FILE>[...]
40 Remove obsolete changes files from proposed-updates.
41
42   -v, --verbose              be more verbose about what is being done
43   -h, --help                 show this help and exit
44
45 Need either changes files or an admin.txt file with a '.joey' suffix."""
46     sys.exit(exit_code)
47
48 ################################################################################
49
50 def check_changes (filename):
51     try:
52         changes = utils.parse_changes(filename);
53         files = utils.build_file_list(changes);
54     except:
55         utils.warn("Couldn't read changes file '%s'." % (filename));
56         return;
57     num_files = len(files.keys());
58     for file in files.keys():
59         if utils.re_isadeb.match(file):
60             m = re_isdeb.match(file);
61             pkg = m.group(1);
62             version = m.group(2);
63             arch = m.group(3);
64             if Options["debug"]:
65                 print "BINARY: %s ==> %s_%s_%s" % (file, pkg, version, arch);
66         else:
67             m = utils.re_issource.match(file)
68             if m:
69                 pkg = m.group(1);
70                 version = m.group(2);
71                 type = m.group(3);
72                 if type != "dsc":
73                     del files[file];
74                     num_files -= 1;
75                     continue;
76                 arch = "source";
77                 if Options["debug"]:
78                     print "SOURCE: %s ==> %s_%s_%s" % (file, pkg, version, arch);
79             else:
80                 utils.fubar("unknown type, fix me");
81         if not pu.has_key(pkg):
82             # FIXME
83             utils.warn("%s doesn't seem to exist in p-u?? (from %s [%s])" % (pkg, file, filename));
84             continue;
85         if not pu[pkg].has_key(arch):
86             # FIXME
87             utils.warn("%s doesn't seem to exist for %s in p-u?? (from %s [%s])" % (pkg, arch, file, filename));
88             continue;
89         pu_version = utils.re_no_epoch.sub('', pu[pkg][arch]);
90         if pu_version == version:
91             if Options["verbose"]:
92                 print "%s: ok" % (file);
93         else:
94             if Options["verbose"]:
95                 print "%s: superseded, removing. [%s]" % (file, pu_version);
96             del files[file];
97
98     new_num_files = len(files.keys());
99     if new_num_files == 0:
100         print "%s: no files left, superseded by %s" % (filename, pu_version);
101         dest = Cnf["Dir::Morgue"] + "/misc/";
102         utils.move(filename, dest);
103     elif new_num_files < num_files:
104         print "%s: lost files, MWAAP." % (filename);
105     else:
106         if Options["verbose"]:
107             print "%s: ok" % (filename);
108
109 ################################################################################
110
111 def check_joey (filename):
112     file = utils.open_file(filename);
113
114     cwd = os.getcwd();
115     os.chdir("%s/dists/proposed-updates" % (Cnf["Dir::Root"]));
116
117     for line in file.readlines():
118         line = line.rstrip();
119         if line.find('install') != -1:
120             split_line = line.split();
121             if len(split_line) != 2:
122                 utils.fubar("Parse error (not exactly 2 elements): %s" % (line));
123             install_type = split_line[0];
124             if install_type not in [ "install", "install-u", "sync-install" ]:
125                 utils.fubar("Unknown install type ('%s') from: %s" % (install_type, line));
126             changes_filename = split_line[1]
127             if Options["debug"]:
128                 print "Processing %s..." % (changes_filename);
129             check_changes(changes_filename);
130
131     os.chdir(cwd);
132
133 ################################################################################
134
135 def init_pu ():
136     global pu;
137
138     q = projectB.query("""
139 SELECT b.package, b.version, a.arch_string
140   FROM bin_associations ba, binaries b, suite su, architecture a
141   WHERE b.id = ba.bin AND ba.suite = su.id
142     AND su.suite_name = 'proposed-updates' AND a.id = b.architecture
143 UNION SELECT s.source, s.version, 'source'
144   FROM src_associations sa, source s, suite su
145   WHERE s.id = sa.source AND sa.suite = su.id
146     AND su.suite_name = 'proposed-updates'
147 ORDER BY package, version, arch_string;
148 """);
149     ql = q.getresult();
150     for i in ql:
151         pkg = i[0];
152         version = i[1];
153         arch = i[2];
154         if not pu.has_key(pkg):
155             pu[pkg] = {};
156         pu[pkg][arch] = version;
157
158 def main ():
159     global Cnf, projectB, Options;
160
161     Cnf = utils.get_conf()
162
163     Arguments = [('d', "debug", "Halle::Options::Debug"),
164                  ('v',"verbose","Halle::Options::Verbose"),
165                  ('h',"help","Halle::Options::Help")];
166     for i in [ "debug", "verbose", "help" ]:
167         if not Cnf.has_key("Halle::Options::%s" % (i)):
168             Cnf["Halle::Options::%s" % (i)] = "";
169
170     arguments = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
171     Options = Cnf.SubTree("Halle::Options")
172
173     if Options["Help"]:
174         usage(0);
175     if not arguments:
176         utils.fubar("need at least one package name as an argument.");
177
178     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
179     db_access.init(Cnf, projectB);
180
181     init_pu();
182
183     for file in arguments:
184         if file.endswith(".changes"):
185             check_changes(file);
186         elif file.endswith(".joey"):
187             check_joey(file);
188         else:
189             utils.fubar("Unrecognised file type: '%s'." % (file));
190
191 #######################################################################################
192
193 if __name__ == '__main__':
194     main()
195