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 ################################################################################
42 from daklib.daklog import Logger
43 from daklib.config import Config
44 from daklib.dak_exceptions import CantOpenError
46 ################################################################################
49 """Setup the list of modules and brief explanation of what they
54 "Show which suites packages are in"),
56 "Query/change the overrides"),
58 "Archive sanity checks"),
60 "Produce a report on NEW and BYHAND packages"),
62 "Output html for packages in NEW"),
64 "Output html and symlinks for packages in DEFERRED"),
67 "Remove packages from suites"),
70 "Process NEW and BYHAND packages"),
72 "Process packages in queue/unchecked"),
74 "Process packages in policy queues from COMMENTS files"),
77 "Remove obsolete source and binary associations from suites"),
78 ("make-pkg-file-mapping",
79 "Generate package <-> file mapping"),
81 "Generate file lists for apt-ftparchive"),
83 "Generate Release files"),
84 ("generate-packages-sources",
85 "Generate Packages/Sources files"),
87 "Generate content files"),
88 ("generate-index-diffs",
89 "Generate .diff/Index files"),
91 "Clean unused/superseded packages from the archive"),
92 ("manage-build-queues",
93 "Clean and update metadata for build queues"),
95 "Clean cruft from incoming"),
96 ("clean-proposed-updates",
97 "Remove obsolete .changes from proposed-updates"),
100 "Manage the release transition file"),
102 "Override cruft checks"),
103 ("check-proposed-updates",
104 "Dependency checking for proposed-updates"),
105 ("control-overrides",
106 "Manipulate/list override entries in bulk"),
108 "Manipulate suites in bulk"),
110 "Check for obsolete or duplicated packages"),
112 "Display contents of a .dak file"),
114 "Show information useful for NEW processing"),
115 ("find-null-maintainers",
116 "Check for users with no packages in the archive"),
118 "Populate fingerprint/uid table based on a new/updated keyring"),
119 ("import-ldap-fingerprints",
120 "Syncs fingerprint and uid tables with Debian LDAP db"),
121 ("import-users-from-passwd",
122 "Sync PostgreSQL users with passwd file"),
124 "Perform administration on the dak database"),
126 "Update the database to match the conf file"),
128 "Updates databae schema to latest revision"),
130 "Initial setup of the archive"),
132 "Generates Maintainers file for BTS etc"),
134 "Generates override files"),
136 "Move packages from dists/ to pool/"),
137 ("new-security-install",
138 "New way to install a security upload into the archive"),
140 "Split queue/done into a date-based hierarchy"),
142 "Generate statistics"),
144 "Categorize uncategorized bugs filed against ftp.debian.org"),
145 ("import-known-changes",
146 "import old changes files into known_changes table"),
148 "Add a user to the archive"),
150 "Generate changelog between two suites"),
154 ################################################################################
156 def usage(functionality, exit_code=0):
157 """Print a usage message and exit with 'exit_code'."""
159 print """Usage: dak COMMAND [...]
160 Run DAK commands. (Will also work if invoked as COMMAND.)
162 Available commands:"""
163 for (command, description) in functionality:
164 print " %-23s %s" % (command, description)
167 ################################################################################
170 """Launch dak functionality."""
174 logger = Logger(Config(), 'dak top-level', print_starting=False)
175 except CantOpenError:
178 functionality = init()
179 modules = [ command for (command, _) in functionality ]
181 if len(sys.argv) == 0:
182 daklib.utils.fubar("err, argc == 0? how is that possible?")
183 elif (len(sys.argv) == 1
184 or (len(sys.argv) == 2 and
185 (sys.argv[1] == "--help" or sys.argv[1] == "-h"))):
188 # First see if we were invoked with/as the name of a module
189 cmdname = sys.argv[0]
190 cmdname = cmdname[cmdname.rfind("/")+1:]
191 if cmdname in modules:
193 # Otherwise the argument is the module
195 cmdname = sys.argv[1]
196 sys.argv = [sys.argv[0] + " " + sys.argv[1]] + sys.argv[2:]
197 if cmdname not in modules:
200 if name.startswith(cmdname):
205 daklib.utils.warn("ambiguous command '%s' - could be %s" \
206 % (cmdname, ", ".join(match)))
207 usage(functionality, 1)
209 daklib.utils.warn("unknown command '%s'" % (cmdname))
210 usage(functionality, 1)
212 # We do not care. No idea wth sqlalchemy warns about them, makes no sense,
214 warnings.filterwarnings("ignore", 'Predicate of partial index')
217 module = __import__(cmdname.replace("-","_"))
221 except KeyboardInterrupt:
222 msg = 'KeyboardInterrupt caught; exiting'
231 for line in traceback.format_exc().split('\n')[:-1]:
232 logger.log(['exception', line])
235 ################################################################################
237 if __name__ == "__main__":
238 os.environ['LANG'] = 'C'
239 os.environ['LC_ALL'] = 'C'