]> git.decadent.org.uk Git - dak.git/blob - madison
options cleanup
[dak.git] / madison
1 #!/usr/bin/env python
2
3 # Display information about package(s) (suite, version, etc.)
4 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
5 # $Id: madison,v 1.11 2001-09-27 01:23:41 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 #   And, lo, a great and menacing voice rose from the depths, and with
22 #   great wrath and vehemence it's voice boomed across the
23 #   land... ``hehehehehehe... that *tickles*''
24 #                                                       -- aj on IRC
25
26 ################################################################################
27
28 import pg, sys, os, string
29 import utils, db_access
30 import apt_pkg;
31
32 ################################################################################
33
34 Cnf = None;
35 projectB = None;
36
37 ################################################################################
38
39 def arch_compare (a, b):
40     if a == "source" and b == "source":
41         return 0;
42     elif a == "source":
43         return -1;
44     elif b == "source":
45         return 1;
46
47     return cmp (a, b);
48
49 ################################################################################
50
51 def usage (exit_code=0):
52     print """Usage: madison [OPTION] PACKAGE[...]
53 Display information about PACKAGE(s).
54
55   -a, --architecture=ARCH    only show information for this architecture
56   -s, --suite=SUITE          only show information for this suite
57   -h, --help                 show this help and exit
58
59 Both ARCH and SUITE can be space seperated lists, e.g.
60     --architecture=\"m68k i386\""""
61     sys.exit(exit_code)
62
63 ################################################################################
64
65 def main ():
66     global Cnf, projectB;
67
68     apt_pkg.init();
69
70     Cnf = apt_pkg.newConfiguration();
71     apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
72
73     Arguments = [('a',"architecture","Madison::Options::Architecture", "HasArg"),
74                  ('s',"suite","Madison::Options::Suite", "HasArg"),
75                  ('h',"help","Madison::Options::Help")];
76     for i in ["architecture", "suite", "help" ]:
77         Cnf["Madison::Options::%s" % (i)] = "";
78
79     packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
80     Options = Cnf.SubTree("Madison::Options")
81
82     if Options["Help"]:
83         usage();
84     if packages == []:
85         utils.fubar("need at least one package name as an argument.");
86
87     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
88     db_access.init(Cnf, projectB);
89
90     if Options.get("Suite"):
91         con_suites = "AND (";
92         wrong_suites = 0;
93         suites = string.split(Options["Suite"]);
94         for suite in suites:
95             suite_id = db_access.get_suite_id(suite);
96             if suite_id == -1:
97                 utils.warn("suite '%s' not recognised." % (suite));
98                 wrong_suites = wrong_suites + 1;
99             else:
100                 con_suites = con_suites + "su.id = %s OR " % (suite_id);
101         if wrong_suites >= len(suites):
102             utils.fubar("No correct suite given.");
103         con_suites = con_suites[:-3] + ")";
104     else:
105         con_suites = "";
106
107     if Options.get("Architecture"):
108         con_architectures = "AND (";
109         check_source = 0;
110         wrong_architectures = 0;
111         architectures = string.split(Options["Architecture"]);
112         for architecture in architectures:
113             if architecture == "source":
114                 check_source = 1;
115             architecture_id = db_access.get_architecture_id(architecture);
116             if architecture_id == -1:
117                 utils.warn("architecture '%s' not recognised." % (architecture));
118                 wrong_architectures = wrong_architectures + 1;
119             else:
120                 con_architectures = con_architectures + "a.id = %s OR " % (architecture_id);
121         if wrong_architectures >= len(architectures):
122             utils.fubar("No correct architecture given");
123         con_architectures = con_architectures[:-3] + ")";
124     else:
125         con_architectures = "";
126         check_source = 1;
127
128     for package in packages:
129         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' AND a.id = b.architecture AND su.id = ba.suite AND b.id = ba.bin AND b.maintainer = m.id %s %s" % (package, con_suites, con_architectures));
130         ql = q.getresult();
131         if check_source:
132             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' AND su.id = sa.suite AND s.id = sa.source AND s.maintainer = m.id %s" % (package, con_suites));
133             ql.extend(q.getresult());
134         d = {};
135         if not ql:
136             sys.exit(1);
137         for i in ql:
138             package = i[0];
139             version = i[1];
140             architecture = i[2];
141             suite = i[3];
142             if not d.has_key(version):
143                 d[version] = {};
144             if not d[version].has_key(suite):
145                 d[version][suite] = [];
146             d[version][suite].append(architecture);
147
148         versions = d.keys();
149         versions.sort(apt_pkg.VersionCompare);
150         for version in versions:
151             suites = d[version].keys();
152             suites.sort();
153             for suite in suites:
154                 sys.stdout.write("%10s | %10s | %13s | " % (package, version, suite));
155                 count = 0;
156                 arches = d[version][suite];
157                 arches.sort(arch_compare);
158                 for arch in arches:
159                     if count > 0:
160                         sys.stdout.write(', ');
161                     sys.stdout.write(arch);
162                     count = count + 1;
163                 sys.stdout.write('\n');
164
165 #######################################################################################
166
167 if __name__ == '__main__':
168     main()
169