]> git.decadent.org.uk Git - dak.git/blob - dak/ls.py
Globally remove trailing semi-colon damage.
[dak.git] / dak / ls.py
1 #!/usr/bin/env python
2
3 # Display information about package(s) (suite, version, etc.)
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005  James Troup <james@nocrew.org>
5 # $Id: madison,v 1.33 2005-11-15 09:50:32 ajt 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 # <aj> ooo, elmo has "special powers"
24 # <neuro> ooo, does he have lasers that shoot out of his eyes?
25 # <aj> dunno
26 # <aj> maybe he can turn invisible? that'd sure help with improved transparency!
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   -b, --binary-type=TYPE     only show info for binary TYPE
47   -c, --component=COMPONENT  only show info for COMPONENT(s)
48   -g, --greaterorequal       show buildd 'dep-wait pkg >= {highest version}' info
49   -G, --greaterthan          show buildd 'dep-wait pkg >> {highest version}' info
50   -h, --help                 show this help and exit
51   -r, --regex                treat PACKAGE as a regex
52   -s, --suite=SUITE          only show info for this suite
53   -S, --source-and-binary    show info for the binary children of source pkgs
54
55 ARCH, COMPONENT and SUITE can be comma (or space) separated lists, e.g.
56     --architecture=m68k,i386"""
57     sys.exit(exit_code)
58
59 ################################################################################
60
61 def main ():
62     global Cnf, projectB
63
64     Cnf = utils.get_conf()
65
66     Arguments = [('a', "architecture", "Madison::Options::Architecture", "HasArg"),
67                  ('b', "binarytype", "Madison::Options::BinaryType", "HasArg"),
68                  ('c', "component", "Madison::Options::Component", "HasArg"),
69                  ('f', "format", "Madison::Options::Format", "HasArg"),
70                  ('g', "greaterorequal", "Madison::Options::GreaterOrEqual"),
71                  ('G', "greaterthan", "Madison::Options::GreaterThan"),
72                  ('r', "regex", "Madison::Options::Regex"),
73                  ('s', "suite", "Madison::Options::Suite", "HasArg"),
74                  ('S', "source-and-binary", "Madison::Options::Source-And-Binary"),
75                  ('h', "help", "Madison::Options::Help")]
76     for i in [ "architecture", "binarytype", "component", "format",
77                "greaterorequal", "greaterthan", "regex", "suite",
78                "source-and-binary", "help" ]:
79         if not Cnf.has_key("Madison::Options::%s" % (i)):
80             Cnf["Madison::Options::%s" % (i)] = ""
81
82     packages = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
83     Options = Cnf.SubTree("Madison::Options")
84
85     if Options["Help"]:
86         usage()
87     if not packages:
88         utils.fubar("need at least one package name as an argument.")
89
90     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
91     db_access.init(Cnf, projectB)
92
93     # If cron.daily is running; warn the user that our output might seem strange
94     if os.path.exists(os.path.join(Cnf["Dir::Root"], "Archive_Maintenance_In_Progress")):
95         utils.warn("Archive maintenance is in progress; database inconsistencies are possible.")
96
97     # Handle buildd maintenance helper options
98     if Options["GreaterOrEqual"] or Options["GreaterThan"]:
99         if Options["GreaterOrEqual"] and Options["GreaterThan"]:
100             utils.fubar("-g/--greaterorequal and -G/--greaterthan are mutually exclusive.")
101         if not Options["Suite"]:
102             Options["Suite"] = "unstable"
103
104     # Parse -a/--architecture, -c/--component and -s/--suite
105     (con_suites, con_architectures, con_components, check_source) = \
106                  utils.parse_args(Options)
107
108     if Options["BinaryType"]:
109         if Options["BinaryType"] != "udeb" and Options["BinaryType"] != "deb":
110             utils.fubar("Invalid binary type.  'udeb' and 'deb' recognised.")
111         con_bintype = "AND b.type = '%s'" % (Options["BinaryType"])
112         # REMOVE ME TRAMP
113         if Options["BinaryType"] == "udeb":
114             check_source = 0
115     else:
116         con_bintype = ""
117
118     if Options["Regex"]:
119         comparison_operator = "~"
120     else:
121         comparison_operator = "="
122
123     if Options["Source-And-Binary"]:
124         new_packages = []
125         for package in packages:
126             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))
127             new_packages.extend(map(lambda x: x[0], q.getresult()))
128             if package not in new_packages:
129                 new_packages.append(package)
130         packages = new_packages
131
132     results = 0
133     for package in packages:
134         q = projectB.query("""
135 SELECT b.package, b.version, a.arch_string, su.suite_name, c.name, m.name
136   FROM binaries b, architecture a, suite su, bin_associations ba,
137        files f, location l, component c, maintainer m
138  WHERE b.package %s '%s' AND a.id = b.architecture AND su.id = ba.suite
139    AND b.id = ba.bin AND b.file = f.id AND f.location = l.id
140    AND l.component = c.id AND b.maintainer = m.id %s %s %s
141 """ % (comparison_operator, package, con_suites, con_architectures, con_bintype))
142         ql = q.getresult()
143         if check_source:
144             q = projectB.query("""
145 SELECT s.source, s.version, 'source', su.suite_name, c.name, m.name
146   FROM source s, suite su, src_associations sa, files f, location l,
147        component c, maintainer m
148  WHERE s.source %s '%s' AND su.id = sa.suite AND s.id = sa.source
149    AND s.file = f.id AND f.location = l.id AND l.component = c.id
150    AND s.maintainer = m.id %s
151 """ % (comparison_operator, package, con_suites))
152             ql.extend(q.getresult())
153         d = {}
154         highver = {}
155         for i in ql:
156             results += 1
157             (pkg, version, architecture, suite, component, maintainer) = i
158             if component != "main":
159                 suite = "%s/%s" % (suite, component)
160             if not d.has_key(pkg):
161                 d[pkg] = {}
162             highver.setdefault(pkg,"")
163             if not d[pkg].has_key(version):
164                 d[pkg][version] = {}
165                 if apt_pkg.VersionCompare(version, highver[pkg]) > 0:
166                     highver[pkg] = version
167             if not d[pkg][version].has_key(suite):
168                 d[pkg][version][suite] = []
169             d[pkg][version][suite].append(architecture)
170
171         packages = d.keys()
172         packages.sort()
173         for pkg in packages:
174             versions = d[pkg].keys()
175             versions.sort(apt_pkg.VersionCompare)
176             for version in versions:
177                 suites = d[pkg][version].keys()
178                 suites.sort()
179                 for suite in suites:
180                     arches = d[pkg][version][suite]
181                     arches.sort(utils.arch_compare_sw)
182                     if Options["Format"] == "": #normal
183                         sys.stdout.write("%10s | %10s | %13s | " % (pkg, version, suite))
184                         sys.stdout.write(", ".join(arches))
185                         sys.stdout.write('\n')
186                     elif Options["Format"] == "heidi":
187                         for arch in arches:
188                             sys.stdout.write("%s %s %s\n" % (pkg, version, arch))
189             if Options["GreaterOrEqual"]:
190                 print "\n%s (>= %s)" % (pkg, highver[pkg])
191             if Options["GreaterThan"]:
192                 print "\n%s (>> %s)" % (pkg, highver[pkg])
193
194     if not results:
195         sys.exit(1)
196
197 #######################################################################################
198
199 if __name__ == '__main__':
200     main()
201