]> git.decadent.org.uk Git - dak.git/blob - dak/compare_suites.py
a46bc1201a668b0bbd4b761bd8f4a99c78c096d3
[dak.git] / dak / compare_suites.py
1 #!/usr/bin/env python
2
3 # Check for fixable discrepancies between stable and unstable
4 # Copyright (C) 2000, 2001, 2002, 2003, 2006  James Troup <james@nocrew.org>
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 ################################################################################
22
23 import pg, sys
24 import apt_pkg
25 import daklib.database
26 import daklib.utils
27
28 ################################################################################
29
30 Cnf = None
31 projectB = None
32
33 ################################################################################
34
35 def usage(exit_code=0):
36     print """Usage: dak compare-suites
37 Looks for fixable descrepancies between stable and unstable.
38
39   -h, --help                show this help and exit."""
40     sys.exit(exit_code)
41
42 ################################################################################
43
44 def main ():
45     global Cnf, projectB
46
47     Cnf = daklib.utils.get_conf()
48     Arguments = [('h',"help","Compare-Suites::Options::Help")]
49     for i in [ "help" ]:
50         if not Cnf.has_key("Compare-Suites::Options::%s" % (i)):
51             Cnf["Compare-Suites::Options::%s" % (i)] = ""
52
53     apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv)
54
55     Options = Cnf.SubTree("Compare-Suites::Options")
56     if Options["Help"]:
57         usage()
58
59     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
60     daklib.database.init(Cnf, projectB)
61
62     src_suite = "stable"
63     dst_suite = "unstable"
64
65     src_suite_id = daklib.database.get_suite_id(src_suite)
66     dst_suite_id = daklib.database.get_suite_id(dst_suite)
67     arch_all_id = daklib.database.get_architecture_id("all")
68     dsc_type_id = daklib.database.get_override_type_id("dsc")
69
70     for arch in Cnf.ValueList("Suite::%s::Architectures" % (src_suite)):
71         if arch == "source":
72             continue
73
74         # Arch: all doesn't work; consider packages which go from
75         # arch: all to arch: any, e.g. debconf... needs more checks
76         # and thought later.
77
78         if arch == "all":
79             continue
80         arch_id = daklib.database.get_architecture_id(arch)
81         q = projectB.query("""
82 SELECT b_src.package, b_src.version, a.arch_string
83   FROM binaries b_src, bin_associations ba, override o, architecture a
84   WHERE ba.bin = b_src.id AND ba.suite = %s AND b_src.architecture = %s
85         AND a.id = b_src.architecture AND o.package = b_src.package
86         AND o.suite = %s AND o.type != %s AND NOT EXISTS
87     (SELECT 1 FROM bin_associations ba2, binaries b_dst
88        WHERE ba2.bin = b_dst.id AND b_dst.package = b_src.package
89              AND (b_dst.architecture = %s OR b_dst.architecture = %s)
90              AND ba2.suite = %s AND EXISTS
91                (SELECT 1 FROM bin_associations ba3, binaries b2
92                   WHERE ba3.bin = b2.id AND ba3.suite = %s AND b2.package = b_dst.package))
93 ORDER BY b_src.package;"""
94                            % (src_suite_id, arch_id, dst_suite_id, dsc_type_id, arch_id, arch_all_id, dst_suite_id, dst_suite_id))
95         for i in q.getresult():
96             print " ".join(i)
97
98 #######################################################################################
99
100 if __name__ == '__main__':
101     main()
102