]> git.decadent.org.uk Git - dak.git/blob - madison
* katie.py (source_exists): expand the list of distributionsthe source may exist...
[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.28 2003-05-02 13:54:08 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   -c, --component=COMPONENT  only show info for COMPONENT(s)
47   -h, --help                 show this help and exit
48   -r, --regex                treat PACKAGE as a regex
49   -s, --suite=SUITE          only show info for this suite
50   -S, --source-and-binary    show info for the binary children of source pkgs
51
52 ARCH, COMPONENT and SUITE can be comma (or space) separated lists, e.g.
53     --architecture=m68k,i386"""
54     sys.exit(exit_code)
55
56 ################################################################################
57
58 def main ():
59     global Cnf, projectB;
60
61     Cnf = utils.get_conf()
62
63     Arguments = [('a', "architecture", "Madison::Options::Architecture", "HasArg"),
64                  ('c', "component", "Madison::Options::Component", "HasArg"),
65                  ('f', "format", "Madison::Options::Format", "HasArg"),
66                  ('r', "regex", "Madison::Options::Regex"),
67                  ('s', "suite", "Madison::Options::Suite", "HasArg"),
68                  ('S', "source-and-binary", "Madison::Options::Source-And-Binary"),
69                  ('h', "help", "Madison::Options::Help")];
70     for i in [ "architecture", "component", "format", "regex", "suite",
71                "source-and-binary", "help" ]:
72         if not Cnf.has_key("Madison::Options::%s" % (i)):
73             Cnf["Madison::Options::%s" % (i)] = "";
74
75     packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
76     Options = Cnf.SubTree("Madison::Options")
77
78     if Options["Help"]:
79         usage();
80     if not packages:
81         utils.fubar("need at least one package name as an argument.");
82
83     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
84     db_access.init(Cnf, projectB);
85
86     # If cron.daily is running; warn the user that our output might seem strange
87     if os.path.exists(os.path.join(Cnf["Dir::Root"], "Archive_Maintenance_In_Progress")):
88         utils.warn("Archive maintenance is in progress; database inconsistencies are possible.");
89
90     # Parse -a/--architecture, -s/--suite
91     (con_suites, con_architectures, con_components, check_source) = \
92                  utils.parse_args(Options);
93
94     if Options["Regex"]:
95         comparison_operator = "~";
96     else:
97         comparison_operator = "=";
98
99     if Options["Source-And-Binary"]:
100         new_packages = [];
101         for package in packages:
102             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));
103             new_packages.extend(map(lambda x: x[0], q.getresult()));
104             if package not in new_packages:
105                 new_packages.append(package);
106         packages = new_packages;
107
108     results = 0;
109     for package in packages:
110         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));
111         ql = q.getresult();
112         if check_source:
113             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));
114             ql.extend(q.getresult());
115         d = {};
116         for i in ql:
117             results += 1;
118             pkg = i[0];
119             version = i[1];
120             architecture = i[2];
121             suite = i[3];
122             if not d.has_key(pkg):
123                 d[pkg] = {};
124             if not d[pkg].has_key(version):
125                 d[pkg][version] = {};
126             if not d[pkg][version].has_key(suite):
127                 d[pkg][version][suite] = [];
128             d[pkg][version][suite].append(architecture);
129
130         packages = d.keys();
131         packages.sort();
132         for pkg in packages:
133             versions = d[pkg].keys();
134             versions.sort(apt_pkg.VersionCompare);
135             for version in versions:
136                 suites = d[pkg][version].keys();
137                 suites.sort();
138                 for suite in suites:
139                     arches = d[pkg][version][suite];
140                     arches.sort(utils.arch_compare_sw);
141                     if Options["Format"] == "": #normal
142                         sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite));
143                         sys.stdout.write(", ".join(arches));
144                         sys.stdout.write('\n');
145                     elif Options["Format"] == "heidi":
146                         for arch in arches:
147                             sys.stdout.write("%s %s %s\n" % (pkg, version, arch));
148
149     if not results:
150         sys.exit(1);
151
152 #######################################################################################
153
154 if __name__ == '__main__':
155     main()
156