]> git.decadent.org.uk Git - dak.git/blob - heidi
Fix database name to be a config option. Fix debian/rules typo. [Ryan Murray]
[dak.git] / heidi
1 #!/usr/bin/env python
2
3 # Manipulate suite tags
4 # Copyright (C) 2000, 2001  James Troup <james@nocrew.org>
5 # $Id: heidi,v 1.5 2001-03-20 00:28:11 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 # 8to6Guy: "Wow, Bob, You look rough!"
24 # BTAF: "Mbblpmn..."
25 # BTAF <.oO>: "You moron! This is what you get for staying up all night drinking vodka and salad dressing!"
26 # BTAF <.oO>: "This coffee I.V. drip is barely even keeping me awake! I need something with more kick! But what?"
27 # BTAF: "OMIGOD! I OVERDOSED ON HEROIN"
28 # CoWorker#n: "Give him air!!"
29 # CoWorker#n+1: "We need a syringe full of adrenaline!"
30 # CoWorker#n+2: "Stab him in the heart!"
31 # BTAF: "*YES!*"
32 # CoWorker#n+3: "Bob's been overdosing quite a bit lately..."
33 # CoWorker#n+4: "Third time this week."
34
35 # -- http://www.angryflower.com/8to6.gif
36
37 #######################################################################################
38
39 # Adds or removes packages from a suite.  Takes the list of files
40 # either from stdin or as a command line argument.  Special action
41 # "set", will reset the suite (!) and add all packages from scratch. 
42
43 #######################################################################################
44
45 import os, pg, string, sys;
46 import apt_pkg;
47 import utils, db_access;
48
49 #######################################################################################
50
51 Cnf = None;
52 projectB = None;
53
54 #######################################################################################
55
56 def process_file (file, suite_id, action):
57
58     if action == "set":
59         projectB.query("DELETE FROM bin_associations WHERE suite = %s" % (suite_id));
60         projectB.query("DELETE FROM src_associations WHERE suite = %s" % (suite_id));
61         action = "add";
62         
63     for line in file.readlines():
64         split_line = string.split(string.strip(line[:-1]));
65         if len(split_line) != 3:
66             sys.stderr.write("W: '%s' does not break into 'package version architecture'.\n" % (line[:-1]));
67             continue;
68         
69         (package, version, architecture) = split_line;
70
71         if architecture == "source":
72             q = projectB.query("SELECT id FROM source WHERE source = '%s' AND version = '%s'" % (package, version))
73         else:
74             q = projectB.query("SELECT b.id FROM binaries b, architecture a WHERE b.package = '%s' AND b.version = '%s' AND (a.arch_string = '%s' OR a.arch_string = 'all') AND b.architecture = a.id" % (package, version, architecture))
75
76         ql = q.getresult();
77         if ql == []:
78             sys.stderr.write("W: Couldn't find '%s~%s~%s'.\n" % (package, version, architecture));
79             continue;
80         if len(ql) > 1:
81             sys.stderr.write("E: Found more than one match for '%s~%s~%s'.\n" % (package, version, architecture));
82             continue;
83         id = ql[0][0];
84
85         if architecture == "source": 
86             # Find the existing assoications ID, if any
87             q = projectB.query("SELECT id FROM src_associations WHERE suite = %s and source = %s" % (suite_id, id));
88             ql = q.getresult();
89             if ql == []:
90                 assoication_id = None;
91             else:
92                 assoication_id = ql[0][0];
93             # Take action
94             if action == "add":
95                 if assoication_id != None:
96                     sys.stderr.write("W: '%s~%s~%s' already exists in suite %s.\n" % (package, version, architecture, suite_id));
97                     continue;
98                 else:
99                     q = projectB.query("INSERT INTO src_associations (suite, source) VALUES (%s, %s)" % (suite_id, id));
100             elif action == "remove":
101                 if assoication_id == None:
102                     sys.stderr.write("W: '%s~%s~%s' doesn't exist in suite %s.\n" % (package, version, architecture, suite_id));
103                     continue;
104                 else:
105                     q = projectB.query("DELETE FROM src_associations WHERE id = %s" % (assoication_id));
106         else:
107             # Find the existing assoications ID, if any
108             q = projectB.query("SELECT id FROM bin_associations WHERE suite = %s and bin = %s" % (suite_id, id));
109             ql = q.getresult();
110             if ql == []:
111                 assoication_id = None;
112             else:
113                 assoication_id = ql[0][0];
114             # Take action
115             if action == "add":
116                 if assoication_id != None:
117                     sys.stderr.write("W: '%s~%s~%s' already exists in suite %s.\n" % (package, version, architecture, suite_id));
118                     continue;
119                 else:
120                     q = projectB.query("INSERT INTO bin_associations (suite, bin) VALUES (%s, %s)" % (suite_id, id));
121             elif action == "remove":
122                 if assoication_id == None:
123                     sys.stderr.write("W: '%s~%s~%s' doesn't exist in suite %s.\n" % (package, version, architecture, suite_id));
124                     continue;
125                 else:
126                     q = projectB.query("DELETE FROM bin_associations WHERE id = %s" % (assoication_id));
127               
128 #######################################################################################
129
130 def get_list (suite_id):
131     # List binaries
132     q = projectB.query("SELECT b.package, b.version, a.arch_string FROM binaries b, bin_associations ba, architecture a WHERE ba.suite = %s AND ba.bin = b.id AND b.architecture = a.id" % (suite_id));
133     ql = q.getresult();
134     for i in ql:
135         print string.join(i);
136
137     # List source
138     q = projectB.query("SELECT s.source, s.version FROM source s, src_associations sa WHERE sa.suite = %s AND sa.source = s.id" % (suite_id));
139     ql = q.getresult();
140     for i in ql:
141         print string.join(i) + " source";
142
143 #######################################################################################
144
145 def main ():
146     global Cnf, projectB;
147
148     apt_pkg.init();
149     
150     Cnf = apt_pkg.newConfiguration();
151     apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
152
153     Arguments = [('a',"add","Heidi::Options::Add", "HasArg"),
154                  ('d',"debug","Heidi::Options::Debug", "IntVal"),
155                  ('h',"help","Heidi::Options::Help"),
156                  ('l',"list","Heidi::Options::List","HasArg"),
157                  ('r',"remove", "Heidi::Options::Remove", "HasArg"),
158                  ('s',"set", "Heidi::Options::Set", "HasArg"),
159                  ('v',"version","Heidi::Options::Version")];
160
161     file_list = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
162
163     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"],int(Cnf["DB::Port"]));
164
165     db_access.init(Cnf, projectB);
166
167     action = None;
168
169     for i in ("add", "list", "remove", "set"):
170         suite = Cnf["Heidi::Options::%s" % (i)];
171         if suite !="":
172             if not Cnf.has_key("Suite::%s" % (suite)):
173                 sys.stderr.write("Unknown suite %s.\n" %(suite));
174                 sys.exit(2);
175             else:
176                 suite_id = db_access.get_suite_id(suite);
177                 if action != None:
178                     sys.stderr.write("Can only do one action at a time.\n");
179                     sys.exit(2);
180                 action = i;
181
182     # Need an action...
183     if action == None:
184         sys.stderr.write("No action specified.\n");
185         sys.exit(2);
186
187     # Safety/Sanity check
188     if action == "set" and suite != "testing":
189         sys.stderr.write("Will not reset a suite other than testing...\n");
190         sys.exit(2);
191
192     if action == "list":
193         get_list(suite_id);
194     else:
195         if file_list != []:
196             for file in file_list:
197                 process_file(utils.open_file(file,'r'), suite_id, action);
198         else:
199             process_file(sys.stdin, suite_id, action);
200
201 #######################################################################################
202
203 if __name__ == '__main__':
204     main()
205