]> git.decadent.org.uk Git - dak.git/blob - alyson
sync
[dak.git] / alyson
1 #!/usr/bin/env python
2
3 # Sync the ISC configuartion file and the SQL database
4 # Copyright (C) 2000  James Troup <james@nocrew.org>
5 # $Id: alyson,v 1.1 2001-01-10 05:58:26 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
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 component != 'main':
67             prefix = component + '/';
68         else:
69             prefix = "";
70         for section in Cnf.SubTree("Section").List():
71             projectB.query("INSERT INTO section (section) VALUES ('%s%s')" % (prefix, section));
72     projectB.query("COMMIT WORK");
73
74
75
76 #######################################################################################
77
78 if __name__ == '__main__':
79     main()
80