]> git.decadent.org.uk Git - dak.git/blob - madison
add -i to quinn-diff invocation
[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.23 2003-01-02 18:11:20 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 usage (exit_code=0):
42     print """Usage: madison [OPTION] PACKAGE[...]
43 Display information about PACKAGE(s).
44
45   -a, --architecture=ARCH    only show info for this architecture
46   -h, --help                 show this help and exit
47   -r, --regex                treat PACKAGE as a regex
48   -s, --suite=SUITE          only show info for this suite
49   -S, --source-and-binary    show info for the binary children of source pkgs
50
51 Both ARCH and SUITE can be space seperated lists, e.g.
52     --architecture=\"m68k i386\""""
53     sys.exit(exit_code)
54
55 ################################################################################
56
57 def main ():
58     global Cnf, projectB;
59
60     Cnf = utils.get_conf()
61
62     Arguments = [('a', "architecture", "Madison::Options::Architecture", "HasArg"),
63                  ('c', "component", "Madison::Options::Component", "HasArg"),
64                  ('r', "regex", "Madison::Options::Regex"),
65                  ('s', "suite", "Madison::Options::Suite", "HasArg"),
66                  ('S', "source-and-binary", "Madison::Options::Source-And-Binary"),
67                  ('h', "help", "Madison::Options::Help")];
68     for i in [ "architecture", "component", "regex", "suite",
69                "source-and-binary", "help" ]:
70         if not Cnf.has_key("Madison::Options::%s" % (i)):
71             Cnf["Madison::Options::%s" % (i)] = "";
72
73     packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
74     Options = Cnf.SubTree("Madison::Options")
75
76     if Options["Help"]:
77         usage();
78     if not packages:
79         utils.fubar("need at least one package name as an argument.");
80
81     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
82     db_access.init(Cnf, projectB);
83
84     # Parse -a/--architecture, -s/--suite
85     (con_suites, con_architectures, con_components, check_source) = \
86                  utils.parse_args(Options);
87
88     if Options["Regex"]:
89         comparison_operator = "~";
90     else:
91         comparison_operator = "=";
92
93     if Options["Source-And-Binary"]:
94         new_packages = [];
95         for package in packages:
96             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));
97             new_packages.extend(map(lambda x: x[0], q.getresult()));
98             new_packages.append(package);
99         packages = new_packages;
100
101     results = 0;
102     for package in packages:
103         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));
104         ql = q.getresult();
105         if check_source:
106             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));
107             ql.extend(q.getresult());
108         d = {};
109         for i in ql:
110             results += 1;
111             pkg = i[0];
112             version = i[1];
113             architecture = i[2];
114             suite = i[3];
115             if not d.has_key(pkg):
116                 d[pkg] = {};
117             if not d[pkg].has_key(version):
118                 d[pkg][version] = {};
119             if not d[pkg][version].has_key(suite):
120                 d[pkg][version][suite] = [];
121             d[pkg][version][suite].append(architecture);
122
123         packages = d.keys();
124         packages.sort();
125         for pkg in packages:
126             versions = d[pkg].keys();
127             versions.sort(apt_pkg.VersionCompare);
128             for version in versions:
129                 suites = d[pkg][version].keys();
130                 suites.sort();
131                 for suite in suites:
132                     sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite));
133                     arches = d[pkg][version][suite];
134                     arches.sort(utils.arch_compare_sw);
135                     sys.stdout.write(", ".join(arches));
136                     sys.stdout.write('\n');
137
138     if not results:
139         sys.exit(1);
140
141 #######################################################################################
142
143 if __name__ == '__main__':
144     main()
145