]> git.decadent.org.uk Git - dak.git/blob - madison
update regex, closing #111349
[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.13 2001-11-18 19:57:58 rmurray 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     Cnf = utils.get_conf()
69
70     Arguments = [('a',"architecture","Madison::Options::Architecture", "HasArg"),
71                  ('s',"suite","Madison::Options::Suite", "HasArg"),
72                  ('h',"help","Madison::Options::Help")];
73     for i in ["architecture", "suite", "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 Options.get("Suite"):
89         suite_ids_list = [];
90         for suite in string.split(Options["Suite"]):
91             suite_id = db_access.get_suite_id(suite);
92             if suite_id == -1:
93                 utils.warn("suite '%s' not recognised." % (suite));
94             else:
95                 suite_ids_list.append(suite_id);
96         if suite_ids_list:
97             con_suites = "AND su.id IN (%s)" % string.join(map(str, suite_ids_list), ", ");
98         else:
99             utils.fubar("No correct suite given.");
100     else:
101         con_suites = "";
102
103     if Options.get("Architecture"):
104         arch_ids_list = [];
105         check_source = 0;
106         for architecture in string.split(Options["Architecture"]):
107             if architecture == "source":
108                 check_source = 1;
109             architecture_id = db_access.get_architecture_id(architecture);
110             if architecture_id == -1:
111                 utils.warn("architecture '%s' not recognised." % (architecture));
112             else:
113                 arch_ids_list.append(architecture_id);
114         if arch_ids_list:
115             con_architectures = "AND a.id IN (%s)" % string.join(map(str, arch_ids_list), ", ");
116         else:
117             utils.fubar("No correct architecture given.");
118     else:
119         con_architectures = "";
120         check_source = 1;
121
122     results = 0;
123     for package in packages:
124         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));
125         ql = q.getresult();
126         if check_source:
127             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));
128             ql.extend(q.getresult());
129         d = {};
130         for i in ql:
131             results = results + 1;
132             package = i[0];
133             version = i[1];
134             architecture = i[2];
135             suite = i[3];
136             if not d.has_key(version):
137                 d[version] = {};
138             if not d[version].has_key(suite):
139                 d[version][suite] = [];
140             d[version][suite].append(architecture);
141
142         versions = d.keys();
143         versions.sort(apt_pkg.VersionCompare);
144         for version in versions:
145             suites = d[version].keys();
146             suites.sort();
147             for suite in suites:
148                 sys.stdout.write("%10s | %10s | %13s | " % (package, version, suite));
149                 count = 0;
150                 arches = d[version][suite];
151                 arches.sort(arch_compare);
152                 for arch in arches:
153                     if count > 0:
154                         sys.stdout.write(', ');
155                     sys.stdout.write(arch);
156                     count = count + 1;
157                 sys.stdout.write('\n');
158
159     if not results:
160         sys.exit(1);
161
162 #######################################################################################
163
164 if __name__ == '__main__':
165     main()
166