]> git.decadent.org.uk Git - dak.git/blob - madison
2004-04-03 James Troup <james@nocrew.org> * debian/control (Depends): add python2...
[dak.git] / madison
1 #!/usr/bin/env python
2
3 # Display information about package(s) (suite, version, etc.)
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004  James Troup <james@nocrew.org>
5 # $Id: madison,v 1.29 2004-01-21 03:20:13 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 os, 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 ARCH(s)
46   -b, --binary-type=TYPE     only show info for binary TYPE(s)
47   -c, --component=COMPONENT  only show info for COMPONENT(s)
48   -h, --help                 show this help and exit
49   -r, --regex                treat PACKAGE as a regex
50   -s, --suite=SUITE          only show info for this suite
51   -S, --source-and-binary    show info for the binary children of source pkgs
52
53 ARCH, COMPONENT and SUITE can be comma (or space) separated lists, e.g.
54     --architecture=m68k,i386"""
55     sys.exit(exit_code)
56
57 ################################################################################
58
59 def main ():
60     global Cnf, projectB;
61
62     Cnf = utils.get_conf()
63
64     Arguments = [('a', "architecture", "Madison::Options::Architecture", "HasArg"),
65                  ('b', "binarytype", "Madison::Options::BinaryType", "HasArg"),
66                  ('c', "component", "Madison::Options::Component", "HasArg"),
67                  ('f', "format", "Madison::Options::Format", "HasArg"),
68                  ('r', "regex", "Madison::Options::Regex"),
69                  ('s', "suite", "Madison::Options::Suite", "HasArg"),
70                  ('S', "source-and-binary", "Madison::Options::Source-And-Binary"),
71                  ('h', "help", "Madison::Options::Help")];
72     for i in [ "architecture", "binarytype", "component", "format", "regex",
73                "suite", "source-and-binary", "help" ]:
74         if not Cnf.has_key("Madison::Options::%s" % (i)):
75             Cnf["Madison::Options::%s" % (i)] = "";
76
77     packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
78     Options = Cnf.SubTree("Madison::Options")
79
80     if Options["Help"]:
81         usage();
82     if not packages:
83         utils.fubar("need at least one package name as an argument.");
84
85     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
86     db_access.init(Cnf, projectB);
87
88     # If cron.daily is running; warn the user that our output might seem strange
89     if os.path.exists(os.path.join(Cnf["Dir::Root"], "Archive_Maintenance_In_Progress")):
90         utils.warn("Archive maintenance is in progress; database inconsistencies are possible.");
91
92     # Parse -a/--architecture, -c/--component and -s/--suite
93     (con_suites, con_architectures, con_components, check_source) = \
94                  utils.parse_args(Options);
95
96     if Options["BinaryType"]:
97         if Options["BinaryType"] != "udeb" and Options["BinaryType"] != "deb":
98             utils.fubar("Invalid binary type.  'udeb' and 'deb' recognised.");
99         con_bintype = "AND b.type = '%s'" % (Options["BinaryType"]);
100         # REMOVE ME TRAMP
101         if Options["BinaryType"] == "udeb":
102             check_source = 0;
103     else:
104         con_bintype = "";
105
106     if Options["Regex"]:
107         comparison_operator = "~";
108     else:
109         comparison_operator = "=";
110
111     if Options["Source-And-Binary"]:
112         new_packages = [];
113         for package in packages:
114             q = projectB.query("SELECT DISTINCT b.package FROM binaries b, bin_associations ba, suite su, source s WHERE b.source = s.id AND su.id = ba.suite AND b.id = ba.bin AND s.source %s '%s' %s" % (comparison_operator, package, con_suites));
115             new_packages.extend(map(lambda x: x[0], q.getresult()));
116             if package not in new_packages:
117                 new_packages.append(package);
118         packages = new_packages;
119
120     results = 0;
121     for package in packages:
122         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 %s" % (comparison_operator, package, con_suites, con_architectures, con_bintype));
123         ql = q.getresult();
124         if check_source:
125             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));
126             ql.extend(q.getresult());
127         d = {};
128         for i in ql:
129             results += 1;
130             pkg = i[0];
131             version = i[1];
132             architecture = i[2];
133             suite = i[3];
134             if not d.has_key(pkg):
135                 d[pkg] = {};
136             if not d[pkg].has_key(version):
137                 d[pkg][version] = {};
138             if not d[pkg][version].has_key(suite):
139                 d[pkg][version][suite] = [];
140             d[pkg][version][suite].append(architecture);
141
142         packages = d.keys();
143         packages.sort();
144         for pkg in packages:
145             versions = d[pkg].keys();
146             versions.sort(apt_pkg.VersionCompare);
147             for version in versions:
148                 suites = d[pkg][version].keys();
149                 suites.sort();
150                 for suite in suites:
151                     arches = d[pkg][version][suite];
152                     arches.sort(utils.arch_compare_sw);
153                     if Options["Format"] == "": #normal
154                         sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite));
155                         sys.stdout.write(", ".join(arches));
156                         sys.stdout.write('\n');
157                     elif Options["Format"] == "heidi":
158                         for arch in arches:
159                             sys.stdout.write("%s %s %s\n" % (pkg, version, arch));
160
161     if not results:
162         sys.exit(1);
163
164 #######################################################################################
165
166 if __name__ == '__main__':
167     main()
168