4 Wrapper to launch dak functionality
9 # Copyright (C) 2005, 2006 Anthony Towns <ajt@debian.org>
10 # Copyright (C) 2006 James Troup <james@nocrew.org>
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 ################################################################################
28 # well I don't know where you're from but in AMERICA, there's a little
29 # thing called "abstinent until proven guilty."
30 # -- http://harrietmiers.blogspot.com/2005/10/wow-i-feel-loved.html
32 # (if James had a blog, I bet I could find a funny quote in it to use!)
34 ################################################################################
40 from daklib.daklog import Logger
41 from daklib.config import Config
42 from daklib.dak_exceptions import CantOpenError
44 ################################################################################
47 """Setup the list of modules and brief explanation of what they
52 "Show which suites packages are in"),
54 "Query/change the overrides"),
56 "Archive sanity checks"),
58 "Produce a report on NEW and BYHAND packages"),
60 "Output html for packages in NEW"),
62 "Output html and symlinks for packages in DEFERRED"),
65 "Remove packages from suites"),
68 "Process NEW and BYHAND packages"),
70 "Process packages in queue/unchecked"),
72 "Install packages into the pool"),
74 ("make-suite-file-list",
75 "Generate lists of packages per suite for apt-ftparchive"),
76 ("make-pkg-file-mapping",
77 "Generate package <-> file mapping"),
79 "Generate Release files"),
81 "Generate content files"),
82 ("generate-index-diffs",
83 "Generate .diff/Index files"),
85 "Clean unused/superseded packages from the archive"),
87 "Clean cruft from incoming"),
88 ("clean-proposed-updates",
89 "Remove obsolete .changes from proposed-updates"),
92 "Manage the release transition file"),
94 "Override cruft checks"),
95 ("check-proposed-updates",
96 "Dependency checking for proposed-updates"),
98 "Manipulate/list override entries in bulk"),
100 "Manipulate suites in bulk"),
102 "Check for obsolete or duplicated packages"),
104 "Display contents of a .dak file"),
106 "Show information useful for NEW processing"),
107 ("find-null-maintainers",
108 "Check for users with no packages in the archive"),
110 "Populate fingerprint/uid table based on a new/updated keyring"),
111 ("import-ldap-fingerprints",
112 "Syncs fingerprint and uid tables with Debian LDAP db"),
113 ("import-users-from-passwd",
114 "Sync PostgreSQL users with passwd file"),
116 "Perform administration on the dak database"),
118 "Update the database to match the conf file"),
120 "Updates databae schema to latest revision"),
122 "Initial setup of the archive"),
124 "Generates Maintainers file for BTS etc"),
126 "Generates override files"),
128 "Move packages from dists/ to pool/"),
129 ("new-security-install",
130 "New way to install a security upload into the archive"),
132 "Split queue/done into a date-based hierarchy"),
134 "Generate statistics"),
136 "Categorize uncategorized bugs filed against ftp.debian.org"),
138 "Add a user to the archive"),
142 ################################################################################
144 def usage(functionality, exit_code=0):
145 """Print a usage message and exit with 'exit_code'."""
147 print """Usage: dak COMMAND [...]
148 Run DAK commands. (Will also work if invoked as COMMAND.)
150 Available commands:"""
151 for (command, description) in functionality:
152 print " %-23s %s" % (command, description)
155 ################################################################################
158 """Launch dak functionality."""
162 logger = Logger(Config(), 'dak top-level', print_starting=False)
163 except CantOpenError:
166 functionality = init()
167 modules = [ command for (command, _) in functionality ]
169 if len(sys.argv) == 0:
170 daklib.utils.fubar("err, argc == 0? how is that possible?")
171 elif (len(sys.argv) == 1
172 or (len(sys.argv) == 2 and
173 (sys.argv[1] == "--help" or sys.argv[1] == "-h"))):
176 # First see if we were invoked with/as the name of a module
177 cmdname = sys.argv[0]
178 cmdname = cmdname[cmdname.rfind("/")+1:]
179 if cmdname in modules:
181 # Otherwise the argument is the module
183 cmdname = sys.argv[1]
184 sys.argv = [sys.argv[0] + " " + sys.argv[1]] + sys.argv[2:]
185 if cmdname not in modules:
188 if name.startswith(cmdname):
193 daklib.utils.warn("ambiguous command '%s' - could be %s" \
194 % (cmdname, ", ".join(match)))
195 usage(functionality, 1)
197 daklib.utils.warn("unknown command '%s'" % (cmdname))
198 usage(functionality, 1)
201 module = __import__(cmdname.replace("-","_"))
205 except KeyboardInterrupt:
206 msg = 'KeyboardInterrupt caught; exiting'
215 for line in traceback.format_exc().split('\n')[:-1]:
216 logger.log(['exception', line])
219 ################################################################################
221 if __name__ == "__main__":