]> git.decadent.org.uk Git - dak.git/blob - madison
Update copyright
[dak.git] / madison
1 #!/usr/bin/env python
2
3 # Display information about package(s) (suite, version, etc.)
4 # Copyright (C) 2000, 2001, 2002  James Troup <james@nocrew.org>
5 # $Id: madison,v 1.18 2002-05-03 16:06:45 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 #   And, lo, a great and menacing voice rose from the depths, and with
22 #   great wrath and vehemence it's voice boomed across the
23 #   land... ``hehehehehehe... that *tickles*''
24 #                                                       -- aj on IRC
25
26 ################################################################################
27
28 import pg, string, sys;
29 import utils, db_access;
30 import apt_pkg;
31
32 ################################################################################
33
34 Cnf = None;
35 projectB = None;
36
37 ################################################################################
38
39 def arch_compare (a, b):
40     if a == "source" and b == "source":
41         return 0;
42     elif a == "source":
43         return -1;
44     elif b == "source":
45         return 1;
46
47     return cmp (a, b);
48
49 ################################################################################
50
51 def usage (exit_code=0):
52     print """Usage: madison [OPTION] PACKAGE[...]
53 Display information about PACKAGE(s).
54
55   -a, --architecture=ARCH    only show info for this architecture
56   -r, --regex                treat PACKAGE as a regex
57   -s, --suite=SUITE          only show info for this suite
58   -S, --source-and-binary    show info for the binary children of source pkgs
59   -h, --help                 show this help and exit
60
61 Both ARCH and SUITE can be space seperated lists, e.g.
62     --architecture=\"m68k i386\""""
63     sys.exit(exit_code)
64
65 ################################################################################
66
67 def main ():
68     global Cnf, projectB;
69
70     Cnf = utils.get_conf()
71
72     Arguments = [('a', "architecture", "Madison::Options::Architecture", "HasArg"),
73                  ('r', "regex", "Madison::Options::Regex"),
74                  ('s', "suite", "Madison::Options::Suite", "HasArg"),
75                  ('S', "source-and-binary", "Madison::Options::Source-And-Binary"),
76                  ('h', "help", "Madison::Options::Help")];
77     for i in ["architecture", "regex", "suite", "source-and-binary", "help" ]:
78         if not Cnf.has_key("Madison::Options::%s" % (i)):
79             Cnf["Madison::Options::%s" % (i)] = "";
80
81     packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
82     Options = Cnf.SubTree("Madison::Options")
83
84     if Options["Help"]:
85         usage();
86     if not packages:
87         utils.fubar("need at least one package name as an argument.");
88
89     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
90     db_access.init(Cnf, projectB);
91
92     if Options["Regex"]:
93         comparison_operator = "~";
94     else:
95         comparison_operator = "=";
96
97     if Options["Suite"]:
98         suite_ids_list = [];
99         for suite in string.split(Options["Suite"]):
100             suite_id = db_access.get_suite_id(suite);
101             if suite_id == -1:
102                 utils.warn("suite '%s' not recognised." % (suite));
103             else:
104                 suite_ids_list.append(suite_id);
105         if suite_ids_list:
106             con_suites = "AND su.id IN (%s)" % string.join(map(str, suite_ids_list), ", ");
107         else:
108             utils.fubar("No correct suite given.");
109     else:
110         con_suites = "";
111
112     if Options["Architecture"]:
113         arch_ids_list = [];
114         check_source = 0;
115         for architecture in string.split(Options["Architecture"]):
116             if architecture == "source":
117                 check_source = 1;
118             architecture_id = db_access.get_architecture_id(architecture);
119             if architecture_id == -1:
120                 utils.warn("architecture '%s' not recognised." % (architecture));
121             else:
122                 arch_ids_list.append(architecture_id);
123         if arch_ids_list:
124             con_architectures = "AND a.id IN (%s)" % string.join(map(str, arch_ids_list), ", ");
125         else:
126             utils.fubar("No correct architecture given.");
127     else:
128         con_architectures = "";
129         check_source = 1;
130
131     if Options["Source-And-Binary"]:
132         new_packages = [];
133         for package in packages:
134             q = projectB.query("SELECT DISTINCT package FROM binaries WHERE EXISTS (SELECT s.source FROM source s WHERE binaries.source = s.id AND s.source %s '%s')" % (comparison_operator, package));
135             new_packages.extend(map(lambda x: x[0], q.getresult()));
136             new_packages.append(package);
137         packages = new_packages;
138
139     results = 0;
140     for package in packages:
141         q = projectB.query("SELECT b.package, b.version, a.arch_string, su.suite_name, m.name FROM binaries b, architecture a, suite su, bin_associations ba, maintainer m WHERE b.package %s '%s' AND a.id = b.architecture AND su.id = ba.suite AND b.id = ba.bin AND b.maintainer = m.id %s %s" % (comparison_operator, package, con_suites, con_architectures));
142         ql = q.getresult();
143         if check_source:
144             q = projectB.query("SELECT s.source, s.version, 'source', su.suite_name, m.name FROM source s, suite su, src_associations sa, maintainer m WHERE s.source %s '%s' AND su.id = sa.suite AND s.id = sa.source AND s.maintainer = m.id %s" % (comparison_operator, package, con_suites));
145             ql.extend(q.getresult());
146         d = {};
147         for i in ql:
148             results = results + 1;
149             pkg = i[0];
150             version = i[1];
151             architecture = i[2];
152             suite = i[3];
153             if not d.has_key(pkg):
154                 d[pkg] = {};
155             if not d[pkg].has_key(version):
156                 d[pkg][version] = {};
157             if not d[pkg][version].has_key(suite):
158                 d[pkg][version][suite] = [];
159             d[pkg][version][suite].append(architecture);
160
161         packages = d.keys();
162         packages.sort();
163         for pkg in packages:
164             versions = d[pkg].keys();
165             versions.sort(apt_pkg.VersionCompare);
166             for version in versions:
167                 suites = d[pkg][version].keys();
168                 suites.sort();
169                 for suite in suites:
170                     sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite));
171                     count = 0;
172                     arches = d[pkg][version][suite];
173                     arches.sort(arch_compare);
174                     for arch in arches:
175                         if count > 0:
176                             sys.stdout.write(', ');
177                         sys.stdout.write(arch);
178                         count = count + 1;
179                     sys.stdout.write('\n');
180
181     if not results:
182         sys.exit(1);
183
184 #######################################################################################
185
186 if __name__ == '__main__':
187     main()
188