]> git.decadent.org.uk Git - dak.git/blob - dak/dak.py
Merged from ftpmaster
[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         
92         ("rm",
93          "Remove packages from suites"),
94         
95         ("process-new",
96          "Process NEW and BYHAND packages"),
97         ("process-unchecked",
98          "Process packages in queue/unchecked"),
99         ("process-accepted",
100          "Install packages into the pool"),
101         
102         ("make-suite-file-list",
103          "Generate lists of packages per suite for apt-ftparchive"),
104         ("generate-releases",
105          "Generate Release files"),
106         ("generate-index-diffs",
107          "Generate .diff/Index files"),
108         ("clean-suites",
109          "Clean unused/superseded packages from the archive"),
110         ("clean-queues",
111          "Clean cruft from incoming"),
112         ("clean-proposed-updates",
113          "Remove obsolete .changes from proposed-updates"),
114
115         ("transitions",
116          "Manage the release transition file"),
117         ("check-overrides",
118          "Override cruft checks"),
119         ("check-proposed-updates",
120          "Dependency checking for proposed-updates"),
121         ("compare-suites",
122          "Show fixable discrepencies between suites"),
123         ("control-overrides",
124          "Manipulate/list override entries in bulk"),
125         ("control-suite",
126          "Manipulate suites in bulk"),
127         ("cruft-report",
128          "Check for obsolete or duplicated packages"),
129         ("decode-dot-dak",
130          "Display contents of a .dak file"),
131         ("examine-package",
132          "Show information useful for NEW processing"),
133         ("find-null-maintainers",
134          "Check for users with no packages in the archive"),
135         ("import-archive",
136          "Populate SQL database based from an archive tree"),
137         ("import-keyring",
138          "Populate fingerprint/uid table based on a new/updated keyring"),
139         ("import-ldap-fingerprints",
140          "Syncs fingerprint and uid tables with Debian LDAP db"),
141         ("import-users-from-passwd",
142          "Sync PostgreSQL users with passwd file"),
143         ("init-db",
144          "Update the database to match the conf file"),
145         ("init-dirs",
146          "Initial setup of the archive"),
147         ("make-maintainers",
148          "Generates Maintainers file for BTS etc"),
149         ("make-overrides",
150          "Generates override files"),
151         ("mirror-split",
152          "Split the pool/ by architecture groups"),
153         ("poolize",
154          "Move packages from dists/ to pool/"),
155         ("reject-proposed-updates",
156          "Manually reject from proposed-updates"),
157         ("security-install",
158          "Install a security upload into the archive"),
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         ("symlink-dists",
166          "Generate compatability symlinks from dists/ into pool/"),
167         ]
168     return functionality
169     
170 ################################################################################
171
172 def usage(functionality, exit_code=0):
173     """Print a usage message and exit with 'exit_code'."""
174
175     print """Usage: dak COMMAND [...]
176 Run DAK commands.  (Will also work if invoked as COMMAND.)
177
178 Availble commands:"""
179     for (command, description) in functionality:
180         print "  %-23s %s" % (command, description)
181     sys.exit(exit_code)
182
183 ################################################################################
184
185 def main():
186     """Launch dak functionality."""
187
188     Cnf = daklib.utils.get_conf()
189
190     if Cnf.has_key("Dinstall::UserExtensions"):
191         userext = UserExtension(Cnf["Dinstall::UserExtensions"])
192     else:
193         userext = UserExtension()
194
195     functionality = init()
196     modules = [ command for (command, _) in functionality ]
197     
198     if len(sys.argv) == 0:
199         daklib.utils.fubar("err, argc == 0? how is that possible?")
200     elif (len(sys.argv) == 1
201           or (len(sys.argv) == 2 and
202               (sys.argv[1] == "--help" or sys.argv[1] == "-h"))):
203         usage(functionality)
204
205     # First see if we were invoked with/as the name of a module
206     cmdname = sys.argv[0]
207     cmdname = cmdname[cmdname.rfind("/")+1:]
208     if cmdname in modules:
209         pass
210     # Otherwise the argument is the module
211     else:
212         cmdname = sys.argv[1]
213         sys.argv = [sys.argv[0] + " " + sys.argv[1]] + sys.argv[2:]
214         if cmdname not in modules:
215             match = []
216             for name in modules:
217                 if name.startswith(cmdname):
218                     match.append(name)
219             if len(match) == 1:
220                 cmdname = match[0]
221             elif len(match) > 1:
222                 daklib.utils.warn("ambiguous command '%s' - could be %s" \
223                            % (cmdname, ", ".join(match)))
224                 usage(functionality, 1)
225             else:
226                 daklib.utils.warn("unknown command '%s'" % (cmdname))
227                 usage(functionality, 1)
228
229     # Invoke the module
230     module = __import__(cmdname.replace("-","_"))
231
232     module.dak_userext = userext
233     userext.dak_module = module
234
235     daklib.extensions.init(cmdname, module, userext)
236     if userext.init is not None: userext.init(cmdname)
237
238     module.main()
239
240 ################################################################################
241
242 if __name__ == "__main__":
243     main()