]> git.decadent.org.uk Git - dak.git/blob - utils.py
Imported sources.
[dak.git] / utils.py
1 # Utility functions
2 # Copyright (C) 2000  James Troup <james@nocrew.org>
3 # $Id: utils.py,v 1.1.1.1 2000-11-24 00:20:09 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         
33 ######################################################################################
34
35 def open_file(filename, mode):
36     try:
37         f = open(filename, mode);
38     except IOError:
39         raise cant_open_exc, filename
40     return f
41
42 ######################################################################################
43
44 # From reportbug
45 def our_raw_input():
46     sys.stdout.flush()
47     try:
48         ret = raw_input()
49         return ret
50     except EOFError:
51         sys.stderr.write('\nUser interrupt (^D).\n')
52         raise SystemExit
53
54 ######################################################################################
55
56 def parse_changes(filename):
57     changes_in = open_file(filename,'r');
58     error = ""
59     changes = {};
60     lines = changes_in.readlines();
61     for line in lines:
62         if re.match('^-----BEGIN PGP SIGNATURE', line):
63             break;
64         if re.match(r'^\s*$|^-----BEGIN PGP SIGNED MESSAGE', line):
65             continue;
66         slf = re.match(r'^(\S*)\s*:\s*(.*)', line);
67         if slf:
68             field = string.lower(slf.groups()[0]);
69             changes[field] = slf.groups()[1];
70             continue;
71         mld = re.match(r'^ \.$', line);
72         if mld:
73             changes[field] = changes[field] + '\n';
74             continue;
75         mlf = re.match(r'^\s(.*)', line);
76         if mlf:
77             changes[field] = changes[field] + mlf.groups()[0] + '\n';
78             continue;
79         error = error + line;
80     changes_in.close();
81     changes["filecontents"] = string.join (lines, "");
82     if error != "":
83         raise changes_parse_error_exc, error;
84     return changes;
85
86 ######################################################################################
87
88 # Dropped support for 1.4 and ``buggy dchanges 3.4'' (?!) compared to di.pl
89
90 def build_file_list(changes, dsc):
91     files = {}
92     format = changes.get("format", "")
93     if format != "":
94         format = float(format)
95     if dsc == "" and (format < 1.5 or format > 2.0):
96         raise nk_format_exc, changes["format"];
97
98     # No really, this has happened.  Think 0 length .dsc file.
99     if not changes.has_key("files"):
100         raise no_files_exc
101     
102     for i in string.split(changes["files"], "\n"):
103         if i == "":
104             break
105         s = string.split(i)
106         section = priority = component = ""
107         if dsc != "":
108             (md5, size, name) = s
109         else:
110             (md5, size, section, priority, name) = s
111
112         if section == "": section = "-"
113         if priority == "": priority = "-"
114
115         if string.find(section, '/') != -1: 
116             component = string.split(section, '/')[0]
117         if string.lower(component) == "non-us":
118             component = string.split(section, '/')[0]+ '/' + string.split(section, '/')[1]
119
120         if component == "":
121             component = "main"
122
123         files[name] = { "md5sum" : md5,
124                         "size" : size,
125                         "section": section,
126                         "priority": priority,
127                         "component": component }
128
129     return files
130
131 ######################################################################################
132
133 # Fix the `Maintainer:' field to be an RFC822 compatible address.
134 # cf. Packaging Manual (4.2.4)
135 #
136 # 06:28|<Culus> 'The standard sucks, but my tool is supposed to
137 #                interoperate with it. I know - I'll fix the suckage
138 #                and make things incompatible!'
139         
140 def fix_maintainer (maintainer):
141     m = re.match(r"^\s*(\S.*\S)\s*\<([^\> \t]+)\>", maintainer)
142     rfc822 = maintainer
143     name = ""
144     email = ""
145     if m != None and len(m.groups()) == 2:
146         name = m.group(1)
147         email = m.group(2)
148         if re.search(r'[,.]', name) != None:
149             rfc822 = re.sub(r"^\s*(\S.*\S)\s*\<([^\> \t]+)\>", r"\2 (\1)", maintainer)
150     return (rfc822, name, email)
151
152 ######################################################################################
153
154 # sendmail wrapper, takes _either_ a message string or a file as arguments
155 def send_mail (message, filename):
156         #### FIXME, how do I get this out of Cnf in katie?
157         sendmail_command = "/usr/sbin/sendmail -oi -t";
158
159         # Sanity check arguments
160         if message != "" and filename != "":
161                 sys.stderr.write ("send_mail() can't be called with both arguments as non-null! (`%s' and `%s')\n%s" % (message, filename))
162                 sys.exit(1)
163         # If we've been passed a string dump it into a temporary file
164         if message != "":
165                 filename = tempfile.mktemp()
166                 fd = os.open(filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0700)
167                 os.write (fd, message)
168                 os.close (fd)
169         # Invoke sendmail
170         (result, output) = commands.getstatusoutput("%s < %s" % (sendmail_command, filename))
171         if (result != 0):
172                 sys.stderr.write ("Sendmail invocation (`%s') failed for `%s'!\n%s" % (sendmail_command, filename, output))
173                 sys.exit(result)
174         # Clean up any temporary files
175         if message !="":
176                 os.unlink (filename)
177
178 ######################################################################################
179
180 def poolify (source, component):
181     if component != "":
182         component = component + '/';
183     if source[:3] == "lib":
184         return component + source[:4] + '/' + source + '/'
185     else:
186         return component + source[:1] + '/' + source + '/'
187
188 ######################################################################################
189
190 def move (src, dest):
191     if os.path.exists(dest) and stat.S_ISDIR(os.stat(dest)[stat.ST_MODE]):
192         dest_dir = dest;
193     else:
194         dest_dir = os.path.dirname(dest);
195     if not os.path.exists(dest_dir):
196         umask = os.umask(00000);
197         os.makedirs(dest_dir, 02775);
198         os.umask(umask);
199     #print "Moving %s to %s..." % (src, dest);
200     shutil.copy2(src, dest);
201     os.chmod(dest, 0664);
202     os.unlink(src);
203
204 ######################################################################################
205
206 # FIXME: this is inherently nasty.  Can't put this mapping in a conf
207 # file because the conf file depends on the archive.. doh.  Maybe an
208 # archive independent conf file is needed.
209
210 def where_am_i ():
211     res = socket.gethostbyaddr(socket.gethostname());
212     if res[0] == 'pandora.debian.org':
213         return 'non-US';
214     elif res[1] == 'auric.debian.org':
215         return 'ftp-master';
216     else:
217         raise unknown_hostname_exc, res;
218
219 ######################################################################################
220
221 # FIXME: this isn't great either.
222
223 def which_conf_file ():
224     archive = where_am_i ();
225     if archive == 'non-US':
226         return '/org/non-us.debian.org/katie/katie.conf-non-US';
227     elif archive == 'ftp-master':
228         return '/org/ftp.debian.org/katie/katie.conf';
229     else:
230         raise unknown_hostname_exc, archive
231
232 ######################################################################################
233