]> git.decadent.org.uk Git - dak.git/blob - dak/dak.py
9dfd026b162d90e0073c5d93cc1186d5d9b5238c
[dak.git] / dak / dak.py
1 #!/usr/bin/env python
2
3 """Wrapper to launch dak functionality"""
4 # Copyright (C) 2005, 2006 Anthony Towns <ajt@debian.org>
5 # Copyright (C) 2006 James Troup <james@nocrew.org>
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 # well I don't know where you're from but in AMERICA, there's a little
24 # thing called "abstinent until proven guilty."
25 #  -- http://harrietmiers.blogspot.com/2005/10/wow-i-feel-loved.html
26
27 # (if James had a blog, I bet I could find a funny quote in it to use!)
28
29 ################################################################################
30
31 import sys, imp
32 import daklib.utils, daklib.extensions
33
34 ################################################################################
35
36 class UserExtension:
37     def __init__(self, user_extension = None):
38         if user_extension:
39             m = imp.load_source("dak_userext", user_extension)
40             d = m.__dict__
41         else:
42             m, d = None, {}
43         self.__dict__["_module"] = m
44         self.__dict__["_d"] = d
45
46     def __getattr__(self, a):
47         if a in self.__dict__: return self.__dict__[a]
48         if a[0] == "_": raise AttributeError, a
49         return self._d.get(a, None)
50
51     def __setattr__(self, a, v):
52         self._d[a] = v
53
54 ################################################################################
55
56 class UserExtension:
57     def __init__(self, user_extension = None):
58         if user_extension:
59             m = imp.load_source("dak_userext", user_extension)
60             d = m.__dict__
61         else:
62             m, d = None, {}
63         self.__dict__["_module"] = m
64         self.__dict__["_d"] = d
65
66     def __getattr__(self, a):
67         if a in self.__dict__: return self.__dict__[a]
68         if a[0] == "_": raise AttributeError, a
69         return self._d.get(a, None)
70
71     def __setattr__(self, a, v):
72         self._d[a] = v
73
74 ################################################################################
75
76 def init():
77     """Setup the list of modules and brief explanation of what they
78     do."""
79
80     functionality = [
81         ("ls",
82          "Show which suites packages are in"),
83         ("override",
84          "Query/change the overrides"),
85         ("check-archive",
86          "Archive sanity checks"),
87         ("queue-report",
88          "Produce a report on NEW and BYHAND packages"),
89         ("show-new",
90          "Output html for packages in NEW"),
91         ("show-deferred",
92          "Output html and symlinks for packages in DEFERRED"),
93
94         ("rm",
95          "Remove packages from suites"),
96
97         ("process-new",
98          "Process NEW and BYHAND packages"),
99         ("process-unchecked",
100          "Process packages in queue/unchecked"),
101         ("process-accepted",
102          "Install packages into the pool"),
103
104         ("make-suite-file-list",
105          "Generate lists of packages per suite for apt-ftparchive"),
106         ("generate-releases",
107          "Generate Release files"),
108         ("generate-index-diffs",
109          "Generate .diff/Index files"),
110         ("clean-suites",
111          "Clean unused/superseded packages from the archive"),
112         ("clean-queues",
113          "Clean cruft from incoming"),
114         ("clean-proposed-updates",
115          "Remove obsolete .changes from proposed-updates"),
116
117         ("transitions",
118          "Manage the release transition file"),
119         ("check-overrides",
120          "Override cruft checks"),
121         ("check-proposed-updates",
122          "Dependency checking for proposed-updates"),
123         ("compare-suites",
124          "Show fixable discrepencies between suites"),
125         ("control-overrides",
126          "Manipulate/list override entries in bulk"),
127         ("control-suite",
128          "Manipulate suites in bulk"),
129         ("cruft-report",
130          "Check for obsolete or duplicated packages"),
131         ("decode-dot-dak",
132          "Display contents of a .dak file"),
133         ("examine-package",
134          "Show information useful for NEW processing"),
135         ("find-null-maintainers",
136          "Check for users with no packages in the archive"),
137         ("import-archive",
138          "Populate SQL database based from an archive tree"),
139         ("import-keyring",
140          "Populate fingerprint/uid table based on a new/updated keyring"),
141         ("import-ldap-fingerprints",
142          "Syncs fingerprint and uid tables with Debian LDAP db"),
143         ("import-users-from-passwd",
144          "Sync PostgreSQL users with passwd file"),
145         ("init-db",
146          "Update the database to match the conf file"),
147         ("init-dirs",
148          "Initial setup of the archive"),
149         ("make-maintainers",
150          "Generates Maintainers file for BTS etc"),
151         ("make-overrides",
152          "Generates override files"),
153         ("mirror-split",
154          "Split the pool/ by architecture groups"),
155         ("poolize",
156          "Move packages from dists/ to pool/"),
157         ("reject-proposed-updates",
158          "Manually reject from proposed-updates"),
159         ("new-security-install",
160          "New way to install a security upload into the archive"),
161         ("split-done",
162          "Split queue/done into a date-based hierarchy"),
163         ("stats",
164          "Generate statistics"),
165         ]
166     return functionality
167
168 ################################################################################
169
170 def usage(functionality, exit_code=0):
171     """Print a usage message and exit with 'exit_code'."""
172
173     print """Usage: dak COMMAND [...]
174 Run DAK commands.  (Will also work if invoked as COMMAND.)
175
176 Available commands:"""
177     for (command, description) in functionality:
178         print "  %-23s %s" % (command, description)
179     sys.exit(exit_code)
180
181 ################################################################################
182
183 def main():
184     """Launch dak functionality."""
185
186     Cnf = daklib.utils.get_conf()
187
188     if Cnf.has_key("Dinstall::UserExtensions"):
189         userext = UserExtension(Cnf["Dinstall::UserExtensions"])
190     else:
191         userext = UserExtension()
192
193     functionality = init()
194     modules = [ command for (command, _) in functionality ]
195
196     if len(sys.argv) == 0:
197         daklib.utils.fubar("err, argc == 0? how is that possible?")
198     elif (len(sys.argv) == 1
199           or (len(sys.argv) == 2 and
200               (sys.argv[1] == "--help" or sys.argv[1] == "-h"))):
201         usage(functionality)
202
203     # First see if we were invoked with/as the name of a module
204     cmdname = sys.argv[0]
205     cmdname = cmdname[cmdname.rfind("/")+1:]
206     if cmdname in modules:
207         pass
208     # Otherwise the argument is the module
209     else:
210         cmdname = sys.argv[1]
211         sys.argv = [sys.argv[0] + " " + sys.argv[1]] + sys.argv[2:]
212         if cmdname not in modules:
213             match = []
214             for name in modules:
215                 if name.startswith(cmdname):
216                     match.append(name)
217             if len(match) == 1:
218                 cmdname = match[0]
219             elif len(match) > 1:
220                 daklib.utils.warn("ambiguous command '%s' - could be %s" \
221                            % (cmdname, ", ".join(match)))
222                 usage(functionality, 1)
223             else:
224                 daklib.utils.warn("unknown command '%s'" % (cmdname))
225                 usage(functionality, 1)
226
227     # Invoke the module
228     module = __import__(cmdname.replace("-","_"))
229
230     module.dak_userext = userext
231     userext.dak_module = module
232
233     daklib.extensions.init(cmdname, module, userext)
234     if userext.init is not None: userext.init(cmdname)
235
236     module.main()
237
238 ################################################################################
239
240 if __name__ == "__main__":
241     main()