]> git.decadent.org.uk Git - dak.git/blob - dak/split_done.py
Stop using silly names, and migrate to a saner directory structure.
[dak.git] / dak / split_done.py
1 #!/usr/bin/env python
2
3 # Copyright (C) 2004, 2005  James Troup <james@nocrew.org>
4 # $Id: nina,v 1.2 2005-11-15 09:50:32 ajt Exp $
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 ################################################################################
21
22 import glob, os, stat, time;
23 import utils;
24
25 ################################################################################
26
27 def main():
28     Cnf = utils.get_conf()
29     count = 0;
30     os.chdir(Cnf["Dir::Queue::Done"])
31     files = glob.glob("%s/*" % (Cnf["Dir::Queue::Done"]));
32     for filename in files:
33         if os.path.isfile(filename):
34             mtime = time.gmtime(os.stat(filename)[stat.ST_MTIME]);
35             dirname = time.strftime("%Y/%m/%d", mtime);
36             if not os.path.exists(dirname):
37                 print "Creating: %s" % (dirname);
38                 os.makedirs(dirname);
39             dest = dirname + '/' + os.path.basename(filename);
40             if os.path.exists(dest):
41                 utils.fubar("%s already exists." % (dest));
42             print "Move: %s -> %s" % (filename, dest) ;
43             os.rename(filename, dest);
44             count = count + 1;
45     print "Moved %d files." % (count);
46
47 ############################################################
48
49 if __name__ == '__main__':
50     main()