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.19 2002-06-05 00:20:16 troup Exp $
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.
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.
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
21 ################################################################################
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*''
28 ################################################################################
30 import pg, string, sys;
31 import utils, db_access;
34 ################################################################################
39 ################################################################################
41 def arch_compare (a, b):
42 if a == "source" and b == "source":
51 ################################################################################
53 def usage (exit_code=0):
54 print """Usage: madison [OPTION] PACKAGE[...]
55 Display information about PACKAGE(s).
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
63 Both ARCH and SUITE can be space seperated lists, e.g.
64 --architecture=\"m68k i386\""""
67 ################################################################################
72 Cnf = utils.get_conf()
74 Arguments = [('a', "architecture", "Madison::Options::Architecture", "HasArg"),
75 ('r', "regex", "Madison::Options::Regex"),
76 ('s', "suite", "Madison::Options::Suite", "HasArg"),
77 ('S', "source-and-binary", "Madison::Options::Source-And-Binary"),
78 ('h', "help", "Madison::Options::Help")];
79 for i in ["architecture", "regex", "suite", "source-and-binary", "help" ]:
80 if not Cnf.has_key("Madison::Options::%s" % (i)):
81 Cnf["Madison::Options::%s" % (i)] = "";
83 packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
84 Options = Cnf.SubTree("Madison::Options")
89 utils.fubar("need at least one package name as an argument.");
91 projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
92 db_access.init(Cnf, projectB);
95 comparison_operator = "~";
97 comparison_operator = "=";
101 for suite in string.split(Options["Suite"]):
102 suite_id = db_access.get_suite_id(suite);
104 utils.warn("suite '%s' not recognised." % (suite));
106 suite_ids_list.append(suite_id);
108 con_suites = "AND su.id IN (%s)" % string.join(map(str, suite_ids_list), ", ");
110 utils.fubar("No correct suite given.");
114 if Options["Architecture"]:
117 for architecture in string.split(Options["Architecture"]):
118 if architecture == "source":
120 architecture_id = db_access.get_architecture_id(architecture);
121 if architecture_id == -1:
122 utils.warn("architecture '%s' not recognised." % (architecture));
124 arch_ids_list.append(architecture_id);
126 con_architectures = "AND a.id IN (%s)" % string.join(map(str, arch_ids_list), ", ");
128 utils.fubar("No correct architecture given.");
130 con_architectures = "";
133 if Options["Source-And-Binary"]:
135 for package in packages:
136 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));
137 new_packages.extend(map(lambda x: x[0], q.getresult()));
138 new_packages.append(package);
139 packages = new_packages;
142 for package in packages:
143 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));
146 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));
147 ql.extend(q.getresult());
150 results = results + 1;
155 if not d.has_key(pkg):
157 if not d[pkg].has_key(version):
158 d[pkg][version] = {};
159 if not d[pkg][version].has_key(suite):
160 d[pkg][version][suite] = [];
161 d[pkg][version][suite].append(architecture);
166 versions = d[pkg].keys();
167 versions.sort(apt_pkg.VersionCompare);
168 for version in versions:
169 suites = d[pkg][version].keys();
172 sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite));
173 arches = d[pkg][version][suite];
174 arches.sort(arch_compare);
175 sys.stdout.write(string.join(arches, ", "));
176 sys.stdout.write('\n');
181 #######################################################################################
183 if __name__ == '__main__':