]> git.decadent.org.uk Git - dak.git/blob - madison
lots and lots of python 2.1 changes. rene: remove bogus argument handling. katie...
[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.21 2002-10-16 02:47:32 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 #   And, lo, a great and menacing voice rose from the depths, and with
24 #   great wrath and vehemence it's voice boomed across the
25 #   land... ``hehehehehehe... that *tickles*''
26 #                                                       -- aj on IRC
27
28 ################################################################################
29
30 import pg, sys;
31 import utils, db_access;
32 import apt_pkg;
33
34 ################################################################################
35
36 Cnf = None;
37 projectB = None;
38
39 ################################################################################
40
41 def arch_compare (a, b):
42     if a == "source" and b == "source":
43         return 0;
44     elif a == "source":
45         return -1;
46     elif b == "source":
47         return 1;
48
49     return cmp (a, b);
50
51 ################################################################################
52
53 def usage (exit_code=0):
54     print """Usage: madison [OPTION] PACKAGE[...]
55 Display information about PACKAGE(s).
56
57   -a, --architecture=ARCH    only show info for this architecture
58   -r, --regex                treat PACKAGE as a regex
59   -s, --suite=SUITE          only show info for this suite
60   -S, --source-and-binary    show info for the binary children of source pkgs
61   -h, --help                 show this help and exit
62
63 Both ARCH and SUITE can be space seperated lists, e.g.
64     --architecture=\"m68k i386\""""
65     sys.exit(exit_code)
66
67 ################################################################################
68
69 def main ():
70     global Cnf, projectB;
71
72     Cnf = utils.get_conf()
73
74     Arguments = [('a', "architecture", "Madison::Options::Architecture", "HasArg"),
75                  ('c', "component", "Madison::Options::Component", "HasArg"),
76                  ('r', "regex", "Madison::Options::Regex"),
77                  ('s', "suite", "Madison::Options::Suite", "HasArg"),
78                  ('S', "source-and-binary", "Madison::Options::Source-And-Binary"),
79                  ('h', "help", "Madison::Options::Help")];
80     for i in [ "architecture", "component", "regex", "suite",
81                "source-and-binary", "help" ]:
82         if not Cnf.has_key("Madison::Options::%s" % (i)):
83             Cnf["Madison::Options::%s" % (i)] = "";
84
85     packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
86     Options = Cnf.SubTree("Madison::Options")
87
88     if Options["Help"]:
89         usage();
90     if not packages:
91         utils.fubar("need at least one package name as an argument.");
92
93     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
94     db_access.init(Cnf, projectB);
95
96     # Parse -a/--architecture, -s/--suite
97     (con_suites, con_architectures, con_components, check_source) = \
98                  utils.parse_args(Options);
99
100     if Options["Regex"]:
101         comparison_operator = "~";
102     else:
103         comparison_operator = "=";
104
105     if Options["Source-And-Binary"]:
106         new_packages = [];
107         for package in packages:
108             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));
109             new_packages.extend(map(lambda x: x[0], q.getresult()));
110             new_packages.append(package);
111         packages = new_packages;
112
113     results = 0;
114     for package in packages:
115         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));
116         ql = q.getresult();
117         if check_source:
118             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));
119             ql.extend(q.getresult());
120         d = {};
121         for i in ql:
122             results += 1;
123             pkg = i[0];
124             version = i[1];
125             architecture = i[2];
126             suite = i[3];
127             if not d.has_key(pkg):
128                 d[pkg] = {};
129             if not d[pkg].has_key(version):
130                 d[pkg][version] = {};
131             if not d[pkg][version].has_key(suite):
132                 d[pkg][version][suite] = [];
133             d[pkg][version][suite].append(architecture);
134
135         packages = d.keys();
136         packages.sort();
137         for pkg in packages:
138             versions = d[pkg].keys();
139             versions.sort(apt_pkg.VersionCompare);
140             for version in versions:
141                 suites = d[pkg][version].keys();
142                 suites.sort();
143                 for suite in suites:
144                     sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite));
145                     arches = d[pkg][version][suite];
146                     arches.sort(arch_compare);
147                     sys.stdout.write(", ".join(arches));
148                     sys.stdout.write('\n');
149
150     if not results:
151         sys.exit(1);
152
153 #######################################################################################
154
155 if __name__ == '__main__':
156     main()
157