]> git.decadent.org.uk Git - dak.git/blob - madison
Adapt usage for new comma seperated arguments
[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  James Troup <james@nocrew.org>
5 # $Id: madison,v 1.27 2003-03-14 19:04:07 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 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 comma (or 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     # If cron.daily is running; warn the user that our output might seem strange
85     if os.path.exists(os.path.join(Cnf["Dir::Root"], "Archive_Maintenance_In_Progress")):
86         utils.warn("Archive maintenance is in progress; database inconsistencies are possible.");
87
88     # Parse -a/--architecture, -s/--suite
89     (con_suites, con_architectures, con_components, check_source) = \
90                  utils.parse_args(Options);
91
92     if Options["Regex"]:
93         comparison_operator = "~";
94     else:
95         comparison_operator = "=";
96
97     if Options["Source-And-Binary"]:
98         new_packages = [];
99         for package in packages:
100             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));
101             new_packages.extend(map(lambda x: x[0], q.getresult()));
102             if package not in new_packages:
103                 new_packages.append(package);
104         packages = new_packages;
105
106     results = 0;
107     for package in packages:
108         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));
109         ql = q.getresult();
110         if check_source:
111             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));
112             ql.extend(q.getresult());
113         d = {};
114         for i in ql:
115             results += 1;
116             pkg = i[0];
117             version = i[1];
118             architecture = i[2];
119             suite = i[3];
120             if not d.has_key(pkg):
121                 d[pkg] = {};
122             if not d[pkg].has_key(version):
123                 d[pkg][version] = {};
124             if not d[pkg][version].has_key(suite):
125                 d[pkg][version][suite] = [];
126             d[pkg][version][suite].append(architecture);
127
128         packages = d.keys();
129         packages.sort();
130         for pkg in packages:
131             versions = d[pkg].keys();
132             versions.sort(apt_pkg.VersionCompare);
133             for version in versions:
134                 suites = d[pkg][version].keys();
135                 suites.sort();
136                 for suite in suites:
137                     sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite));
138                     arches = d[pkg][version][suite];
139                     arches.sort(utils.arch_compare_sw);
140                     sys.stdout.write(", ".join(arches));
141                     sys.stdout.write('\n');
142
143     if not results:
144         sys.exit(1);
145
146 #######################################################################################
147
148 if __name__ == '__main__':
149     main()
150