]> git.decadent.org.uk Git - dak.git/blob - alyson
Copyright update.
[dak.git] / alyson
1 #!/usr/bin/env python
2
3 # Sync the ISC configuartion file and the SQL database
4 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
5 # $Id: alyson,v 1.3 2001-03-02 02:24:33 troup Exp $
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 import pg, sys, string
24 import utils, db_access
25 import apt_pkg;
26
27 ################################################################################
28
29 Cnf = None;
30 projectB = None;
31
32 ################################################################################
33
34 def main ():
35     global Cnf, projectB;
36
37     apt_pkg.init();
38     
39     Cnf = apt_pkg.newConfiguration();
40     apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
41     Arguments = [('D',"debug","Alyson::Options::Debug", "IntVal"),
42                  ('h',"help","Alyson::Options::Help"),
43                  ('v',"version","Alyson::Options::Version")];
44     apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
45
46     projectB = pg.connect('projectb', 'localhost');
47     db_access.init(Cnf, projectB);
48
49     # Quick hack to populate section, priority and bin_type; the rest todo later
50
51     projectB.query("BEGIN WORK");
52     projectB.query("DELETE FROM override_type");
53     for type in Cnf.SubTree("OverrideType").List():
54         projectB.query("INSERT INTO override_type (type) VALUES ('%s')" % (type));
55     projectB.query("COMMIT WORK");
56     
57     projectB.query("BEGIN WORK");
58     projectB.query("DELETE FROM priority");
59     for priority in Cnf.SubTree("Priority").List():
60         projectB.query("INSERT INTO priority (priority, level) VALUES ('%s', %s)" % (priority, Cnf["Priority::%s" % (priority)]));
61     projectB.query("COMMIT WORK");
62
63     projectB.query("BEGIN WORK");
64     projectB.query("DELETE FROM section");
65     for component in Cnf.SubTree("Component").List():
66         if Cnf["Natalie::ComponentPosition"] == "prefix":
67             suffix = "";
68             if component != 'main':
69                 prefix = component + '/';
70             else:
71                 prefix = "";
72         else:
73             prefix = "";
74             component = string.replace(component, "non-US/", "");
75             if component != 'main':
76                 suffix = '/' + component;
77             else:
78                 suffix = "";
79         for section in Cnf.SubTree("Section").List():
80             projectB.query("INSERT INTO section (section) VALUES ('%s%s%s')" % (prefix, section, suffix));
81     projectB.query("COMMIT WORK");
82
83
84
85 #######################################################################################
86
87 if __name__ == '__main__':
88     main()
89