]> git.decadent.org.uk Git - dak.git/blob - utils.py
Update dependencies
[dak.git] / utils.py
1 # Utility functions
2 # Copyright (C) 2000  James Troup <james@nocrew.org>
3 # $Id: utils.py,v 1.10 2000-12-19 17:23:03 troup Exp $
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
19 import commands, os, re, socket, shutil, stat, string, sys, tempfile
20
21 re_comments = re.compile(r"\#.*")
22 re_no_epoch = re.compile(r"^\d*\:")
23 re_no_revision = re.compile(r"\-[^-]*$")
24 re_arch_from_filename = re.compile(r"/binary-[^/]+/")
25 re_extract_src_version = re.compile (r"(\S+)\s*\((.*)\)")
26
27 changes_parse_error_exc = "Can't parse line in .changes file";
28 nk_format_exc = "Unknown Format: in .changes file";
29 no_files_exc = "No Files: field in .dsc file.";
30 cant_open_exc = "Can't read file.";
31 unknown_hostname_exc = "Unknown hostname";
32 cant_overwrite_exc = "Permission denied; can't overwrite existent file."
33         
34 ######################################################################################
35
36 def open_file(filename, mode):
37     try:
38         f = open(filename, mode);
39     except IOError:
40         raise cant_open_exc, filename
41     return f
42
43 ######################################################################################
44
45 # From reportbug
46 def our_raw_input():
47     sys.stdout.flush()
48     try:
49         ret = raw_input()
50         return ret
51     except EOFError:
52         sys.stderr.write('\nUser interrupt (^D).\n')
53         raise SystemExit
54
55 ######################################################################################
56
57 def parse_changes(filename):
58     changes_in = open_file(filename,'r');
59     error = ""
60     changes = {};
61     lines = changes_in.readlines();
62     for line in lines:
63         if re.match('^-----BEGIN PGP SIGNATURE', line):
64             break;
65         if re.match(r'^\s*$|^-----BEGIN PGP SIGNED MESSAGE', line):
66             continue;
67         slf = re.match(r'^(\S*)\s*:\s*(.*)', line);
68         if slf:
69             field = string.lower(slf.groups()[0]);
70             changes[field] = slf.groups()[1];
71             continue;
72         mld = re.match(r'^ \.$', line);
73         if mld:
74             changes[field] = changes[field] + '\n';
75             continue;
76         mlf = re.match(r'^\s(.*)', line);
77         if mlf:
78             changes[field] = changes[field] + mlf.groups()[0] + '\n';
79             continue;
80         error = error + line;
81     changes_in.close();
82     changes["filecontents"] = string.join (lines, "");
83     if error != "":
84         raise changes_parse_error_exc, error;
85     return changes;
86
87 ######################################################################################
88
89 # Dropped support for 1.4 and ``buggy dchanges 3.4'' (?!) compared to di.pl
90
91 def build_file_list(changes, dsc):
92     files = {}
93     format = changes.get("format", "")
94     if format != "":
95         format = float(format)
96     if dsc == "" and (format < 1.5 or format > 2.0):
97         raise nk_format_exc, changes["format"];
98
99     # No really, this has happened.  Think 0 length .dsc file.
100     if not changes.has_key("files"):
101         raise no_files_exc
102     
103     for i in string.split(changes["files"], "\n"):
104         if i == "":
105             break
106         s = string.split(i)
107         section = priority = component = ""
108         if dsc != "":
109             (md5, size, name) = s
110         else:
111             (md5, size, section, priority, name) = s
112
113         if section == "": section = "-"
114         if priority == "": priority = "-"
115
116         # What a mess.  FIXME
117         if string.find(section, '/') != -1: 
118             component = string.split(section, '/')[0]
119         if string.lower(component) == "non-us" and string.count(section, '/') > 0:
120             s = string.split(section, '/')[1]
121             if s == "main" or s == "non-free" or s == "contrib": # Avoid e.g. non-US/libs
122                 component = string.split(section, '/')[0]+ '/' + string.split(section, '/')[1]
123
124         if string.lower(section) == "non-us":
125             component = "non-US/main";
126             
127         if component == "":
128             component = "main";
129         elif string.lower(component) == "non-us":
130             component = "non-US/main";
131         
132         files[name] = { "md5sum" : md5,
133                         "size" : size,
134                         "section": section,
135                         "priority": priority,
136                         "component": component }
137
138     return files
139
140 ######################################################################################
141
142 # Fix the `Maintainer:' field to be an RFC822 compatible address.
143 # cf. Packaging Manual (4.2.4)
144 #
145 # 06:28|<Culus> 'The standard sucks, but my tool is supposed to
146 #                interoperate with it. I know - I'll fix the suckage
147 #                and make things incompatible!'
148         
149 def fix_maintainer (maintainer):
150     m = re.match(r"^\s*(\S.*\S)\s*\<([^\> \t]+)\>", maintainer)
151     rfc822 = maintainer
152     name = ""
153     email = ""
154     if m != None and len(m.groups()) == 2:
155         name = m.group(1)
156         email = m.group(2)
157         if re.search(r'[,.]', name) != None:
158             rfc822 = re.sub(r"^\s*(\S.*\S)\s*\<([^\> \t]+)\>", r"\2 (\1)", maintainer)
159     return (rfc822, name, email)
160
161 ######################################################################################
162
163 # sendmail wrapper, takes _either_ a message string or a file as arguments
164 def send_mail (message, filename):
165         #### FIXME, how do I get this out of Cnf in katie?
166         sendmail_command = "/usr/sbin/sendmail -odq -oi -t";
167
168         # Sanity check arguments
169         if message != "" and filename != "":
170                 sys.stderr.write ("send_mail() can't be called with both arguments as non-null! (`%s' and `%s')\n%s" % (message, filename))
171                 sys.exit(1)
172         # If we've been passed a string dump it into a temporary file
173         if message != "":
174                 filename = tempfile.mktemp()
175                 fd = os.open(filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0700)
176                 os.write (fd, message)
177                 os.close (fd)
178         # Invoke sendmail
179         (result, output) = commands.getstatusoutput("%s < %s" % (sendmail_command, filename))
180         if (result != 0):
181                 sys.stderr.write ("Sendmail invocation (`%s') failed for `%s'!\n%s" % (sendmail_command, filename, output))
182                 sys.exit(result)
183         # Clean up any temporary files
184         if message !="":
185                 os.unlink (filename)
186
187 ######################################################################################
188
189 def poolify (source, component):
190     if component != "":
191         component = component + '/';
192     # FIXME: this is nasty
193     component = string.lower(component);
194     component = string.replace(component, 'non-us/', 'non-US/');
195     if source[:3] == "lib":
196         return component + source[:4] + '/' + source + '/'
197     else:
198         return component + source[:1] + '/' + source + '/'
199
200 ######################################################################################
201
202 def move (src, dest):
203     if os.path.exists(dest) and os.path.isdir(dest):
204         dest_dir = dest;
205     else:
206         dest_dir = os.path.dirname(dest);
207     if not os.path.exists(dest_dir):
208         umask = os.umask(00000);
209         os.makedirs(dest_dir, 02775);
210         os.umask(umask);
211     #print "Moving %s to %s..." % (src, dest);
212     if os.path.exists(dest) and os.path.isdir(dest):
213         dest = dest + '/' + os.path.basename(src);
214     # Check for overwrite permission on existent files
215     if os.path.exists(dest) and not os.access(dest, os.W_OK):
216         raise cant_overwrite_exc
217     shutil.copy2(src, dest);
218     os.chmod(dest, 0664);
219     os.unlink(src);
220
221 def copy (src, dest):
222     if os.path.exists(dest) and os.path.isdir(dest):
223         dest_dir = dest;
224     else:
225         dest_dir = os.path.dirname(dest);
226     if not os.path.exists(dest_dir):
227         umask = os.umask(00000);
228         os.makedirs(dest_dir, 02775);
229         os.umask(umask);
230     #print "Copying %s to %s..." % (src, dest);
231     if os.path.exists(dest) and os.path.isdir(dest):
232         dest = dest + '/' + os.path.basename(src);
233     if os.path.exists(dest) and not os.access(dest, os.W_OK):
234         raise cant_overwrite_exc
235     shutil.copy2(src, dest);
236     os.chmod(dest, 0664);
237
238 ######################################################################################
239
240 # FIXME: this is inherently nasty.  Can't put this mapping in a conf
241 # file because the conf file depends on the archive.. doh.  Maybe an
242 # archive independent conf file is needed.
243
244 def where_am_i ():
245     res = socket.gethostbyaddr(socket.gethostname());
246     if res[0] == 'pandora.debian.org':
247         return 'non-US';
248     elif res[0] == 'auric.debian.org':
249         return 'ftp-master';
250     else:
251         raise unknown_hostname_exc, res;
252
253 ######################################################################################
254
255 # FIXME: this isn't great either.
256
257 def which_conf_file ():
258     archive = where_am_i ();
259     if archive == 'non-US':
260         return '/org/non-us.debian.org/katie/katie.conf-non-US';
261     elif archive == 'ftp-master':
262         return '/org/ftp.debian.org/katie/katie.conf';
263     else:
264         raise unknown_hostname_exc, archive
265
266 ######################################################################################
267
268 # Escape characters which have meaning to SQL's regex comparison operator ('~')
269 # (woefully incomplete)
270
271 def regex_safe (s):
272     s = string.replace(s, '+', '\\\\+');
273     return s
274
275 ######################################################################################
276
277 def size_type (c):
278     t  = " b";
279     if c > 10000:
280         c = c / 1000;
281         t = " Kb";
282     if c > 10000:
283         c = c / 1000;
284         t = " Mb";
285     return ("%d%s" % (c, t))