]> git.decadent.org.uk Git - dak.git/blob - natalie.py
sync
[dak.git] / natalie.py
1 #!/usr/bin/env python
2
3 # Manipulate override files
4 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
5 # $Id: natalie.py,v 1.10 2001-09-17 11:18:37 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 errno, os, pg, pwd, string, sys, time;
24 import utils, db_access, logging;
25 import apt_pkg;
26
27 ################################################################################
28
29 Cnf = None;
30 projectB = None;
31 Logger = None;
32
33 ################################################################################
34
35 def usage (exit_code):
36     print """Usage: natalie.py [OPTIONS]
37   -D, --debug=VALUE        debug
38   -h, --help               this help
39   -V, --version            retrieve version
40   -c, --component=CMPT     list/set overrides by component
41                                   (contrib,*main,non-free)
42   -s, --suite=SUITE        list/set overrides by suite
43                                   (experimental,stable,testing,*unstable)
44   -t, --type=TYPE          list/set overrides by type
45                                   (*deb,dsc,udeb)
46   -S, --set                set overrides from stdin
47   -l, --list               list overrides on stdout
48
49  starred (*) values are default"""
50     sys.exit(exit_code)
51
52 ################################################################################
53
54 def init ():
55     global projectB;
56
57     projectB = pg.connect('projectb', None);
58     db_access.init(Cnf, projectB);
59
60 def process_file (file, suite, component, type):
61     suite_id = db_access.get_suite_id(suite);
62     if suite_id == -1:
63         utils.fubar("Suite '%s' not recognised." % (suite));
64
65     component_id = db_access.get_component_id(component);
66     if component_id == -1:
67         utils.fubar("Component '%s' not recognised." % (component));
68
69     type_id = db_access.get_override_type_id(type);
70     if type_id == -1:
71         utils.fubar("Type '%s' not recognised. (Valid types are deb, udeb and dsc.)" % (type));
72
73     # --set is done mostly internal for performance reasons; most
74     # invocations of --set will be updates and making people wait 2-3
75     # minutes while 6000 select+inserts are run needlessly isn't cool.
76
77     original = {};
78     new = {};
79     c_skipped = 0;
80     c_added = 0;
81     c_updated = 0;
82     c_removed = 0;
83     c_error = 0;
84
85     q = projectB.query("SELECT o.package, o.priority, o.section, o.maintainer, p.priority, s.section FROM override o, priority p, section s WHERE o.suite = %s AND o.component = %s AND o.type = %s and o.priority = p.id and o.section = s.id"
86                        % (suite_id, component_id, type_id));
87     for i in q.getresult():
88         original[i[0]] = i[1:];
89
90     start_time = time.time();
91     projectB.query("BEGIN WORK");
92     for line in file.readlines():
93         line = string.strip(utils.re_comments.sub('', line[:-1]))
94         if line == "":
95             continue;
96
97         maintainer_override = None;
98         if type == "dsc":
99             split_line = string.split(line, None, 2);
100             if len(split_line) == 2:
101                 (package, section) = split_line;
102             elif len(split_line) == 3:
103                 (package, section, maintainer_override) = split_line;
104             else:
105                 utils.warn("'%s' does not break into 'package section [maintainer-override]'." % (line));
106                 c_error = c_error + 1;
107                 continue;
108             priority = "source";
109         else: # binary or udeb
110             split_line = string.split(line, None, 3);
111             if len(split_line) == 3:
112                 (package, priority, section) = split_line;
113             elif len(split_line) == 4:
114                 (package, priority, section, maintainer_override) = split_line;
115             else:
116                 utils.warn("'%s' does not break into 'package priority section [maintainer-override]'." % (line));
117                 c_error = c_error + 1;
118                 continue;
119
120         section_id = db_access.get_section_id(section);
121         if section_id == -1:
122             utils.warn("'%s' is not a valid section. ['%s' in suite %s, component %s]." % (section, package, suite, component));
123             c_error = c_error + 1;
124             continue;
125         priority_id = db_access.get_priority_id(priority);
126         if priority_id == -1:
127             utils.warn("'%s' is not a valid priority. ['%s' in suite %s, component %s]." % (priority, package, suite, component));
128             c_error = c_error + 1;
129             continue;
130
131         if new.has_key(package):
132             utils.warn("Can't insert duplicate entry for '%s'; ignoring all but the first. [suite %s, component %s]" % (package, suite, component));
133             c_error = c_error + 1;
134             continue;
135         new[package] = "";
136         if original.has_key(package):
137             (old_priority_id, old_section_id, old_maintainer_override, old_priority, old_section) = original[package];
138             if old_priority_id == priority_id and old_section_id == section_id and old_maintainer_override == maintainer_override:
139                 # Same?  Ignore it
140                 c_skipped = c_skipped + 1;
141                 continue;
142             else:
143                 # Changed?  Delete the old one so we can reinsert it with the new information
144                 c_updated = c_updated + 1;
145                 projectB.query("DELETE FROM override WHERE suite = %s AND component = %s AND package = '%s' AND type = %s"
146                                % (suite_id, component_id, package, type_id));
147                 # Log changes
148                 if old_priority_id != priority_id:
149                     Logger.log(["changed priority",package,old_priority,priority]);
150                 if old_section_id != section_id:
151                     Logger.log(["changed section",package,old_section,section]);
152                 if old_maintainer_override != maintainer_override:
153                     Logger.log(["changed maintainer override",package,old_maintainer_override,maintainer_override]);
154                 update_p = 1;
155         else:
156             c_added = c_added + 1;
157             update_p = 0;
158
159         if maintainer_override:
160             projectB.query("INSERT INTO override (suite, component, type, package, priority, section, maintainer) VALUES (%s, %s, %s, '%s', %s, %s, '%s')"
161                            % (suite_id, component_id, type_id, package, priority_id, section_id, maintainer_override));
162         else:
163             projectB.query("INSERT INTO override (suite, component, type, package, priority, section) VALUES (%s, %s, %s, '%s', %s, %s)"
164                            % (suite_id, component_id, type_id, package, priority_id, section_id));
165
166         if not update_p:
167             Logger.log(["new override",suite,component,type,package,priority,section,maintainer_override]);
168
169     # Delete any packages which were removed
170     for package in original.keys():
171         if not new.has_key(package):
172             projectB.query("DELETE FROM override WHERE suite = %s AND component = %s AND package = '%s' AND type = %s"
173                            % (suite_id, component_id, package, type_id));
174             c_removed = c_removed + 1;
175             Logger.log(["removed override",suite,component,type,package]);
176
177     projectB.query("COMMIT WORK");
178     print "Done in %d seconds. [Updated = %d, Added = %d, Removed = %d, Skipped = %d, Errors = %d]" % (int(time.time()-start_time), c_updated, c_added, c_removed, c_skipped, c_error);
179     Logger.log(["set complete",c_updated, c_added, c_removed, c_skipped, c_error]);
180
181 ################################################################################
182
183 def list(suite, component, type):
184     suite_id = db_access.get_suite_id(suite);
185     if suite_id == -1:
186         utils.fubar("Suite '%s' not recognised." % (suite));
187
188     component_id = db_access.get_component_id(component);
189     if component_id == -1:
190         utils.fubar("Component '%s' not recognised." % (component));
191
192     type_id = db_access.get_override_type_id(type);
193     if type_id == -1:
194         utils.fubar("Type '%s' not recognised. (Valid types are deb, udeb and dsc)" % (type));
195
196     if type == "dsc":
197         q = projectB.query("SELECT o.package, s.section, o.maintainer FROM override o, section s WHERE o.suite = %s AND o.component = %s AND o.type = %s AND o.section = s.id ORDER BY s.section, o.package" % (suite_id, component_id, type_id));
198         for i in q.getresult():
199             print utils.result_join(i);
200     else:
201         q = projectB.query("SELECT o.package, p.priority, s.section, o.maintainer, p.level FROM override o, priority p, section s WHERE o.suite = %s AND o.component = %s AND o.type = %s AND o.priority = p.id AND o.section = s.id ORDER BY s.section, p.level, o.package" % (suite_id, component_id, type_id));
202         for i in q.getresult():
203             print utils.result_join(i[:-1]);
204
205 ################################################################################
206
207 def main ():
208     global Cnf, projectB, Logger;
209
210     apt_pkg.init();
211
212     Cnf = apt_pkg.newConfiguration();
213     apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
214     Arguments = [('D',"debug","Natalie::Options::Debug", "IntVal"),
215                  ('h',"help","Natalie::Options::Help"),
216                  ('V',"version","Natalie::Options::Version"),
217                  ('c',"component", "Natalie::Options::Component", "HasArg"),
218                  ('l',"list", "Natalie::Options::List"),
219                  ('s',"suite","Natalie::Options::Suite", "HasArg"),
220                  ('S',"set","Natalie::Options::Set"),
221                  ('t',"type","Natalie::Options::Type", "HasArg")];
222     file_list = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
223
224     if Cnf["Natalie::Options::Help"]:
225         usage(0);
226
227     init();
228
229     action = None;
230     for i in [ "list", "set" ]:
231         if Cnf["Natalie::Options::%s" % (i)]:
232             if action != None:
233                 utils.fubar("Can not perform more than one action at once.");
234             action = i;
235
236     (suite, component, type) = (Cnf["Natalie::Options::Suite"], Cnf["Natalie::Options::Component"], Cnf["Natalie::Options::Type"])
237
238     if action == "list":
239         list(suite, component, type);
240     else:
241         Logger = logging.Logger(Cnf, "natalie");
242         if file_list != []:
243             for file in file_list:
244                 process_file(utils.open_file(file,'r'), suite, component, type);
245         else:
246             process_file(sys.stdin, suite, component, type);
247         Logger.close();
248
249 #######################################################################################
250
251 if __name__ == '__main__':
252     main()
253