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 $
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.
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.
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
21 ################################################################################
24 import utils, db_access
27 ################################################################################
32 ################################################################################
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);
46 projectB = pg.connect('projectb', 'localhost');
47 db_access.init(Cnf, projectB);
49 # Quick hack to populate section, priority and bin_type; the rest todo later
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");
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");
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 + '/';
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");
76 #######################################################################################
78 if __name__ == '__main__':