]> git.decadent.org.uk Git - dak.git/blob - denise
lower depends on postgresql to suggests
[dak.git] / denise
1 #!/usr/bin/env python
2
3 # Output override files for apt-ftparchive and indices/
4 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
5 # $Id: denise,v 1.9 2001-11-18 19:57:58 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 # This is seperate because it's horribly Debian specific and I don't
22 # want that kind of horribleness in the otherwise generic natalie.  It
23 # does duplicate code tho.
24
25 ################################################################################
26
27 import pg, sys, string
28 import utils, db_access, natalie
29 import apt_pkg;
30
31 ################################################################################
32
33 Cnf = None;
34 projectB = None;
35 override = {}
36
37 ################################################################################
38
39 def list(suite, component, type):
40     global override;
41
42     suite_id = db_access.get_suite_id(suite);
43     if suite_id == -1:
44         utils.fubar("Suite '%s' not recognised." % (suite));
45
46     component_id = db_access.get_component_id(component);
47     if component_id == -1:
48         utils.fubar("Component '%s' not recognised." % (component));
49
50     type_id = db_access.get_override_type_id(type);
51     if type_id == -1:
52         utils.fubar("Type '%s' not recognised. (Valid types are deb, udeb and dsc)" % (type));
53
54     if not override.has_key(suite):
55         override[suite] = {};
56     if not override[suite].has_key(component):
57         override[suite][component] = {};
58     if not override[suite][component].has_key(type):
59         override[suite][component][type] = {};
60
61     if type == "dsc":
62         q = projectB.query("SELECT o.package, s.section, o.maintainer FROM override o, section s WHERE o.suite = %s AND o.component = %s AND o.type = %s AND o.section = s.id ORDER BY s.section, o.package" % (suite_id, component_id, type_id));
63         for i in q.getresult():
64             override[suite][component][type][i[0]] = i;
65             print utils.result_join(i);
66     else:
67         q = projectB.query("SELECT o.package, p.priority, s.section, o.maintainer, p.level FROM override o, priority p, section s WHERE o.suite = %s AND o.component = %s AND o.type = %s AND o.priority = p.id AND o.section = s.id ORDER BY s.section, p.level, o.package" % (suite_id, component_id, type_id));
68         for i in q.getresult():
69             i = i[:-1]; # Strip the priority level
70             override[suite][component][type][i[0]] = i;
71             print utils.result_join(i);
72
73 ################################################################################
74
75 def main ():
76     global Cnf, projectB, override;
77
78     Cnf = utils.get_conf()
79     Arguments = [('D',"debug","Denise::Options::Debug", "IntVal"),
80                  ('h',"help","Denise::Options::Help"),
81                  ('V',"version","Denise::Options::Version")];
82     apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
83
84     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
85     db_access.init(Cnf, projectB);
86
87     natalie.init();
88
89     for suite in [ "stable", "unstable" ]:
90         sys.stderr.write("Processing %s...\n" % (suite));
91         override_suite = Cnf["Suite::%s::OverrideCodeName" % (suite)];
92         for component in Cnf.SubTree("Component").List():
93             if component == "mixed":
94                 continue; # Ick
95             for type in Cnf.SubTree("OverrideType").List():
96                 if type == "deb":
97                     override_type = "";
98                 elif type == "udeb":
99                     if suite != "unstable" or component != "main":
100                         continue; # Ick2
101                     override_type = ".debian-installer";
102                 elif type == "dsc":
103                     override_type = ".src";
104                 filename = "%s/override.%s.%s%s" % (Cnf["Dir::OverrideDir"], override_suite, string.replace(component, "non-US/", ""), override_type);
105                 file = utils.open_file(filename, 'w');
106                 sys.stdout = file;
107                 list(suite, component, type);
108                 sys.stdout.close();
109
110     # Munge the override file for testing by using unstable's where
111     # possible and falling back on stable's where it's not.
112
113     sys.stderr.write("Processing testing...\n");
114     suite = "testing";
115     suite_id = db_access.get_suite_id(suite);
116     override_suite = Cnf["Suite::%s::OverrideCodeName" % (suite)];
117     for component in Cnf.SubTree("Component").List():
118         if component == "mixed":
119             continue;
120         component_id = db_access.get_component_id(component);
121         for type in Cnf.SubTree("OverrideType").List():
122             if type == "deb":
123                 override_type = "";
124                 q = projectB.query("SELECT DISTINCT b.package FROM bin_associations ba, binaries b, files f, location l WHERE ba.suite = %s AND l.component = %s AND ba.bin = b.id AND b.file = f.id AND f.location = l.id" % (suite_id, component_id));
125             elif type == "dsc":
126                 q = projectB.query("SELECT DISTINCT s.source FROM src_associations sa, source s, files f, location l WHERE sa.suite = %s AND l.component = %s AND sa.source = s.id AND s.file = f.id AND f.location = l.id" % (suite_id, component_id));
127                 override_type = ".src";
128             elif type == "udeb":
129                 continue;
130             filename = "override.%s.%s%s" % (override_suite, string.replace(component, "non-US/", ""), override_type);
131             file = utils.open_file(filename, 'w');
132             sys.stdout = file;
133             for i in q.getresult():
134                 package = i[0];
135                 if override["unstable"][component][type].has_key(package):
136                     print utils.result_join(override["unstable"][component][type][package]);
137                 elif override["stable"][component][type].has_key(package):
138                     print utils.result_join(override["stable"][component][type][package]);
139                 else:
140                     if type == "dsc" and (override["unstable"][component]["deb"].has_key(package) or override["stable"][component]["deb"].has_key(package)):
141                         continue; # source falls back on binary; so accept silently
142                     utils.warn("Can't find override entry for testing package '%s' (component %s, type %s)." % (package, component, type));
143             sys.stdout.close();
144
145 #######################################################################################
146
147 if __name__ == '__main__':
148     main()
149