X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Finit_dirs.py;h=d095eeee986b7bdb6093861eb81cda6a32deb79e;hb=5d965c34b35048f8a8fab0a7a11f2943d833952d;hp=b38b4b86c3bdfc8579146e813d81221b0ce23dbb;hpb=30413cf0ff7bc21b8d2b8b4346406357fe55dc19;p=dak.git diff --git a/dak/init_dirs.py b/dak/init_dirs.py index b38b4b86..d095eeee 100755 --- a/dak/init_dirs.py +++ b/dak/init_dirs.py @@ -1,8 +1,7 @@ #!/usr/bin/env python -# Initial setup of an archive -# Copyright (C) 2002, 2004 James Troup -# $Id: rose,v 1.4 2004-03-11 00:20:51 troup Exp $ +"""Initial setup of an archive.""" +# Copyright (C) 2002, 2004, 2006 James Troup # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,8 +20,8 @@ ################################################################################ import os, sys -import utils import apt_pkg +from daklib import utils ################################################################################ @@ -32,8 +31,10 @@ AptCnf = None ################################################################################ def usage(exit_code=0): - print """Usage: rose -Creates directories for an archive based on katie.conf configuration file. + """Print a usage message and exit with 'exit_code'.""" + + print """Usage: dak init-dirs +Creates directories for an archive based on dak.conf configuration file. -h, --help show this help and exit.""" sys.exit(exit_code) @@ -41,19 +42,27 @@ Creates directories for an archive based on katie.conf configuration file. ################################################################################ def do_dir(target, config_name): + """If 'target' exists, make sure it is a directory. If it doesn't, create +it.""" + if os.path.exists(target): if not os.path.isdir(target): - utils.fubar("%s (%s) is not a directory." % (target, config_name)) + utils.fubar("%s (%s) is not a directory." + % (target, config_name)) else: print "Creating %s ..." % (target) os.makedirs(target) def process_file(config, config_name): + """Create directories for a config entry that's a filename.""" + if config.has_key(config_name): target = os.path.dirname(config[config_name]) do_dir(target, config_name) def process_tree(config, tree): + """Create directories for a config tree.""" + for entry in config.SubTree(tree).List(): entry = entry.lower() if tree == "Dir": @@ -64,6 +73,8 @@ def process_tree(config, tree): do_dir(target, config_name) def process_morguesubdir(subdir): + """Create directories for morgue sub directories.""" + config_name = "%s::MorgueSubDir" % (subdir) if Cnf.has_key(config_name): target = os.path.join(Cnf["Dir::Morgue"], Cnf[config_name]) @@ -72,12 +83,15 @@ def process_morguesubdir(subdir): ###################################################################### def create_directories(): - # Process directories from apt.conf + """Create directories referenced in dak.conf and apt.conf.""" + + # Process directories from dak.conf process_tree(Cnf, "Dir") process_tree(Cnf, "Dir::Queue") - for file in [ "Dinstall::LockFile", "Melanie::LogFile", "Neve::ExportDir" ]: - process_file(Cnf, file) - for subdir in [ "Shania", "Rhona" ]: + for config_name in [ "Dinstall::LockFile", "Rm::LogFile", + "Import-Archive::ExportDir" ]: + process_file(Cnf, config_name) + for subdir in [ "Clean-Queues", "Clean-Suites" ]: process_morguesubdir(subdir) # Process directories from apt.conf @@ -86,35 +100,41 @@ def create_directories(): config_name = "Tree::%s" % (tree) tree_dir = os.path.join(Cnf["Dir::Root"], tree) do_dir(tree_dir, tree) - for file in [ "FileList", "SourceFileList" ]: - process_file(AptCnf, "%s::%s" % (config_name, file)) + for filename in [ "FileList", "SourceFileList" ]: + process_file(AptCnf, "%s::%s" % (config_name, filename)) for component in AptCnf["%s::Sections" % (config_name)].split(): - for architecture in AptCnf["%s::Architectures" % (config_name)].split(): + for architecture in AptCnf["%s::Architectures" \ + % (config_name)].split(): if architecture != "source": architecture = "binary-"+architecture - target = os.path.join(tree_dir,component,architecture) + target = os.path.join(tree_dir, component, architecture) do_dir(target, "%s, %s, %s" % (tree, component, architecture)) ################################################################################ def main (): - global AptCnf, Cnf, projectB + """Initial setup of an archive.""" + + global AptCnf, Cnf Cnf = utils.get_conf() - Arguments = [('h',"help","Rose::Options::Help")] + arguments = [('h', "help", "Init-Dirs::Options::Help")] for i in [ "help" ]: - if not Cnf.has_key("Rose::Options::%s" % (i)): - Cnf["Rose::Options::%s" % (i)] = "" + if not Cnf.has_key("Init-Dirs::Options::%s" % (i)): + Cnf["Init-Dirs::Options::%s" % (i)] = "" - apt_pkg.ParseCommandLine(Cnf, Arguments, sys.argv) + arguments = apt_pkg.ParseCommandLine(Cnf, arguments, sys.argv) - Options = Cnf.SubTree("Rose::Options") - if Options["Help"]: - usage() + options = Cnf.SubTree("Init-Dirs::Options") + if options["Help"]: + usage() + elif arguments: + utils.warn("dak init-dirs takes no arguments.") + usage(exit_code=1) AptCnf = apt_pkg.newConfiguration() - apt_pkg.ReadConfigFileISC(AptCnf,utils.which_apt_conf_file()) + apt_pkg.ReadConfigFileISC(AptCnf, utils.which_apt_conf_file()) create_directories() @@ -122,4 +142,3 @@ def main (): if __name__ == '__main__': main() -