]> git.decadent.org.uk Git - dak.git/blob - dak/auto_decruft.py
auto-decruft: Fix wording of removal message
[dak.git] / dak / auto_decruft.py
1 #!/usr/bin/env python
2
3 """
4 Check for obsolete binary packages
5
6 @contact: Debian FTP Master <ftpmaster@debian.org>
7 @copyright: 2000-2006 James Troup <james@nocrew.org>
8 @copyright: 2009      Torsten Werner <twerner@debian.org>
9 @copyright: 2015      Niels Thykier <niels@thykier.net>
10 @license: GNU General Public License version 2 or later
11 """
12
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
17
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
27 ################################################################################
28
29 # | priviledged positions? What privilege? The honour of working harder
30 # | than most people for absolutely no recognition?
31 #
32 # Manoj Srivastava <srivasta@debian.org> in <87lln8aqfm.fsf@glaurung.internal.golden-gryphon.com>
33
34 ################################################################################
35
36 import sys
37 import apt_pkg
38
39 from daklib.config import Config
40 from daklib.dbconn import *
41 from daklib import utils
42 from daklib.cruft import *
43 from daklib.rm import remove
44
45 ################################################################################
46
47 def usage(exit_code=0):
48     print """Usage: dak cruft-report
49 Check for obsolete or duplicated packages.
50
51   -h, --help                show this help and exit.
52   -n, --dry-run             don't do anything, just show what would have been done
53   -s, --suite=SUITE         check suite SUITE."""
54     sys.exit(exit_code)
55
56 ################################################################################
57
58 def remove_sourceless_cruft(suite_name, suite_id, session, dryrun):
59     """Remove binaries without a source
60
61     @type suite_name: string
62     @param suite_name: The name of the suite to remove from
63
64     @type suite_id: int
65     @param suite_id: The id of the suite donated by suite_name
66
67     @type session: SQLA Session
68     @param session: The database session in use
69
70     @type dryrun: bool
71     @param dryrun: If True, just print the actions rather than actually doing them
72     """""
73     global Options
74     rows = query_without_source(suite_id, session)
75     arch_all_id = get_architecture('all', session=session)
76
77     message = '[auto-cruft] no longer built from source, no reverse dependencies'
78     for row in rows:
79         package = row[0]
80         if utils.check_reverse_depends([package], suite_name, [], session, cruft=True, quiet=True):
81             continue
82
83         if dryrun:
84             # Embed the -R just in case someone wants to run it manually later
85             print 'Would do:    dak rm -m "%s" -s %s -a all -p -R -b %s' % \
86                   (message, suite_name, package)
87         else:
88             q = session.execute("""
89             SELECT b.package, b.version, a.arch_string, b.id
90             FROM binaries b
91                 JOIN bin_associations ba ON b.id = ba.bin
92                 JOIN architecture a ON b.architecture = a.id
93                 JOIN suite su ON ba.suite = su.id
94             WHERE a.id = :arch_all_id AND b.package = :package AND su.id = :suite_id
95             """, {arch_all_id: arch_all_id, package: package, suite_id: suite_id})
96             remove(session, message, [suite_name], list(q), partial=True, whoami="DAK's auto-decrufter")
97
98
99 def removeNBS(suite_name, suite_id, session, dryrun):
100     """Remove binaries no longer built
101
102     @type suite_name: string
103     @param suite_name: The name of the suite to remove from
104
105     @type suite_id: int
106     @param suite_id: The id of the suite donated by suite_name
107
108     @type session: SQLA Session
109     @param session: The database session in use
110
111     @type dryrun: bool
112     @param dryrun: If True, just print the actions rather than actually doing them
113     """""
114     global Options
115     rows = queryNBS(suite_id, session)
116     arch2ids = {}
117     for row in rows:
118         (pkg_list, arch_list, source, _) = row
119         if utils.check_reverse_depends(pkg_list, suite_name, arch_list, session, cruft=True, quiet=True):
120             continue
121         arch_string = ','.join(arch_list)
122         message = '[auto-cruft] NBS (no longer built by %s, no reverse dependencies)' % source
123
124         if dryrun:
125             # Embed the -R just in case someone wants to run it manually later
126             pkg_string = ' '.join(pkg_list)
127             print 'Would do:    dak rm -m "%s" -s %s -a %s -p -R -b %s' % \
128                   (message, suite_name, arch_string, pkg_string)
129         else:
130             for architecture in arch_list:
131                 if architecture in arch2ids:
132                     arch2ids[architecture] = utils.get_architecture(architecture, session=session)
133             arch_ids = tuple(arch2ids[architecture] for architecture in arch_list)
134             params = {
135                 suite_id: suite_id,
136                 arch_ids: arch2ids,
137                 pkg_list: tuple(pkg_list),
138             }
139             q = session.execute("""
140             SELECT b.package, b.version, a.arch_string, b.id
141             FROM binaries b
142                 JOIN bin_associations ba ON b.id = ba.bin
143                 JOIN architecture a ON b.architecture = a.id
144                 JOIN suite su ON ba.suite = su.id
145             WHERE a.id IN :arch_ids AND b.package IN :pkg_db_set AND su.id = :suite_id
146             """, params)
147             remove(session, message, [suite_name], list(q), partial=True, whoami="DAK's auto-decrufter")
148
149 ################################################################################
150
151 def main ():
152     global Options
153     cnf = Config()
154
155     Arguments = [('h',"help","Auto-Decruft::Options::Help"),
156                  ('n',"dry-run","Auto-Decruft::Options::Dry-Run"),
157                  ('s',"suite","Auto-Decruft::Options::Suite","HasArg")]
158     for i in ["help", "Dry-Run"]:
159         if not cnf.has_key("Auto-Decruft::Options::%s" % (i)):
160             cnf["Auto-Decruft::Options::%s" % (i)] = ""
161
162     cnf["Auto-Decruft::Options::Suite"] = cnf.get("Dinstall::DefaultSuite", "unstable")
163
164     apt_pkg.parse_commandline(cnf.Cnf, Arguments, sys.argv)
165
166     Options = cnf.subtree("Auto-Decruft::Options")
167     if Options["Help"]:
168         usage()
169
170     dryrun = False
171     if Options["Dry-Run"]:
172         dryrun = True
173
174     session = DBConn().session()
175
176     suite = get_suite(Options["Suite"].lower(), session)
177     if not suite:
178         utils.fubar("Cannot find suite %s" % Options["Suite"].lower())
179
180     suite_id = suite.suite_id
181     suite_name = suite.suite_name.lower()
182
183     remove_sourceless_cruft(suite_name, suite_id, session, dryrun)
184     removeNBS(suite_name, suite_id, session, dryrun)
185
186 ################################################################################
187
188 if __name__ == '__main__':
189     main()