utils.py 11.5 KB
Newer Older
J
James Troup 已提交
1 2
# Utility functions
# Copyright (C) 2000  James Troup <james@nocrew.org>
J
James Troup 已提交
3
# $Id: utils.py,v 1.13 2001-01-28 09:06:44 troup Exp $
J
James Troup 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

import commands, os, re, socket, shutil, stat, string, sys, tempfile

re_comments = re.compile(r"\#.*")
re_no_epoch = re.compile(r"^\d*\:")
re_no_revision = re.compile(r"\-[^-]*$")
re_arch_from_filename = re.compile(r"/binary-[^/]+/")
re_extract_src_version = re.compile (r"(\S+)\s*\((.*)\)")

changes_parse_error_exc = "Can't parse line in .changes file";
J
James Troup 已提交
28
invalid_dsc_format_exc = "Invalid .dsc file";
J
James Troup 已提交
29 30 31 32
nk_format_exc = "Unknown Format: in .changes file";
no_files_exc = "No Files: field in .dsc file.";
cant_open_exc = "Can't read file.";
unknown_hostname_exc = "Unknown hostname";
J
James Troup 已提交
33
cant_overwrite_exc = "Permission denied; can't overwrite existent file."
J
James Troup 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
	
######################################################################################

def open_file(filename, mode):
    try:
	f = open(filename, mode);
    except IOError:
        raise cant_open_exc, filename
    return f

######################################################################################

# From reportbug
def our_raw_input():
    sys.stdout.flush()
    try:
        ret = raw_input()
        return ret
    except EOFError:
        sys.stderr.write('\nUser interrupt (^D).\n')
        raise SystemExit

######################################################################################

J
James Troup 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
# What a mess.  FIXME
def extract_component_from_section(section):
    component = "";
    
    if string.find(section, '/') != -1: 
        component = string.split(section, '/')[0];
    if string.lower(component) == "non-us" and string.count(section, '/') > 0:
        s = string.split(section, '/')[1];
        if s == "main" or s == "non-free" or s == "contrib": # Avoid e.g. non-US/libs
            component = string.split(section, '/')[0]+ '/' + string.split(section, '/')[1];

    if string.lower(section) == "non-us":
        component = "non-US/main";
            
    if component == "":
        component = "main";
    elif string.lower(component) == "non-us":
        component = "non-US/main";

    return (section, component);

######################################################################################

J
James Troup 已提交
81 82 83 84 85 86 87 88 89 90 91 92 93 94
# dsc_whitespace_rules turns on strict format checking to avoid
# allowing in source packages which are unextracable by the
# inappropriately fragile dpkg-source.
#
# The rules are:
#
#
# o The PGP header consists of "-----BEGIN PGP SIGNED MESSAGE-----"
#   followed by any PGP header data and must end with a blank line.
#
# o The data section must end with a blank line and must be followed by
#   "-----BEGIN PGP SIGNATURE-----".

def parse_changes(filename, dsc_whitespace_rules):
J
James Troup 已提交
95
    changes_in = open_file(filename,'r');
J
James Troup 已提交
96
    error = "";
J
James Troup 已提交
97 98
    changes = {};
    lines = changes_in.readlines();
J
James Troup 已提交
99 100 101 102 103

    # Reindex by line number so we can easily verify the format of
    # .dsc files...
    index = 0;
    indexed_lines = {};
J
James Troup 已提交
104
    for line in lines:
J
James Troup 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
        index = index + 1;
        indexed_lines[index] = line[:-1];

    inside_signature = 0;

    indices = indexed_lines.keys()
    index = 0;
    while index < max(indices):
        index = index + 1;
        line = indexed_lines[index];
        if line == "":
            if dsc_whitespace_rules:
                index = index + 1;
                if index > max(indices):
                    raise invalid_dsc_format_exc, index;
                line = indexed_lines[index];
                if not re.match('^-----BEGIN PGP SIGNATURE', line):
                    raise invalid_dsc_format_exc, index;
                inside_signature = 0;
                break;
J
James Troup 已提交
125 126
        if re.match('^-----BEGIN PGP SIGNATURE', line):
            break;
J
James Troup 已提交
127 128 129 130 131 132
        if re.match(r'^-----BEGIN PGP SIGNED MESSAGE', line):
            if dsc_whitespace_rules:
                inside_signature = 1;
                while index < max(indices) and line != "":
                    index = index + 1;
                    line = indexed_lines[index];
J
James Troup 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
            continue;
        slf = re.match(r'^(\S*)\s*:\s*(.*)', line);
        if slf:
            field = string.lower(slf.groups()[0]);
            changes[field] = slf.groups()[1];
            continue;
        mld = re.match(r'^ \.$', line);
        if mld:
            changes[field] = changes[field] + '\n';
            continue;
        mlf = re.match(r'^\s(.*)', line);
        if mlf:
	    changes[field] = changes[field] + mlf.groups()[0] + '\n';
            continue;
	error = error + line;
J
James Troup 已提交
148 149 150 151

    if dsc_whitespace_rules and inside_signature:
        raise invalid_dsc_format_exc, index;
        
J
James Troup 已提交
152 153
    changes_in.close();
    changes["filecontents"] = string.join (lines, "");
J
James Troup 已提交
154

J
James Troup 已提交
155 156
    if error != "":
	raise changes_parse_error_exc, error;
J
James Troup 已提交
157

J
James Troup 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
    return changes;

######################################################################################

# Dropped support for 1.4 and ``buggy dchanges 3.4'' (?!) compared to di.pl

def build_file_list(changes, dsc):
    files = {}
    format = changes.get("format", "")
    if format != "":
	format = float(format)
    if dsc == "" and (format < 1.5 or format > 2.0):
	raise nk_format_exc, changes["format"];

    # No really, this has happened.  Think 0 length .dsc file.
    if not changes.has_key("files"):
	raise no_files_exc
    
    for i in string.split(changes["files"], "\n"):
        if i == "":
            break
        s = string.split(i)
J
James Troup 已提交
180
        section = priority = "";
J
sync  
James Troup 已提交
181 182 183 184 185 186 187
        try:
            if dsc != "":
                (md5, size, name) = s
            else:
                (md5, size, section, priority, name) = s
        except ValueError:
            raise changes_parse_error_exc, i
J
James Troup 已提交
188 189 190 191

        if section == "": section = "-"
        if priority == "": priority = "-"

J
James Troup 已提交
192
        (section, component) = extract_component_from_section(section);
193
        
J
James Troup 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
        files[name] = { "md5sum" : md5,
                        "size" : size,
                        "section": section,
                        "priority": priority,
                        "component": component }

    return files

######################################################################################

# Fix the `Maintainer:' field to be an RFC822 compatible address.
# cf. Packaging Manual (4.2.4)
#
# 06:28|<Culus> 'The standard sucks, but my tool is supposed to
#                interoperate with it. I know - I'll fix the suckage
#                and make things incompatible!'
        
def fix_maintainer (maintainer):
    m = re.match(r"^\s*(\S.*\S)\s*\<([^\> \t]+)\>", maintainer)
    rfc822 = maintainer
    name = ""
    email = ""
    if m != None and len(m.groups()) == 2:
        name = m.group(1)
        email = m.group(2)
        if re.search(r'[,.]', name) != None:
            rfc822 = re.sub(r"^\s*(\S.*\S)\s*\<([^\> \t]+)\>", r"\2 (\1)", maintainer)
    return (rfc822, name, email)

######################################################################################

# sendmail wrapper, takes _either_ a message string or a file as arguments
def send_mail (message, filename):
	#### FIXME, how do I get this out of Cnf in katie?
228
	sendmail_command = "/usr/sbin/sendmail -odq -oi -t";
J
James Troup 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253

	# Sanity check arguments
	if message != "" and filename != "":
		sys.stderr.write ("send_mail() can't be called with both arguments as non-null! (`%s' and `%s')\n%s" % (message, filename))
		sys.exit(1)
	# If we've been passed a string dump it into a temporary file
	if message != "":
		filename = tempfile.mktemp()
		fd = os.open(filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0700)
		os.write (fd, message)
		os.close (fd)
	# Invoke sendmail
	(result, output) = commands.getstatusoutput("%s < %s" % (sendmail_command, filename))
	if (result != 0):
		sys.stderr.write ("Sendmail invocation (`%s') failed for `%s'!\n%s" % (sendmail_command, filename, output))
		sys.exit(result)
	# Clean up any temporary files
	if message !="":
		os.unlink (filename)

######################################################################################

def poolify (source, component):
    if component != "":
	component = component + '/';
J
James Troup 已提交
254 255 256
    # FIXME: this is nasty
    component = string.lower(component);
    component = string.replace(component, 'non-us/', 'non-US/');
J
James Troup 已提交
257 258 259 260 261 262 263 264
    if source[:3] == "lib":
	return component + source[:4] + '/' + source + '/'
    else:
	return component + source[:1] + '/' + source + '/'

######################################################################################

def move (src, dest):
J
James Troup 已提交
265
    if os.path.exists(dest) and os.path.isdir(dest):
J
James Troup 已提交
266 267 268 269 270 271 272 273
	dest_dir = dest;
    else:
	dest_dir = os.path.dirname(dest);
    if not os.path.exists(dest_dir):
	umask = os.umask(00000);
	os.makedirs(dest_dir, 02775);
	os.umask(umask);
    #print "Moving %s to %s..." % (src, dest);
J
James Troup 已提交
274
    if os.path.exists(dest) and os.path.isdir(dest):
275
	dest = dest + '/' + os.path.basename(src);
J
James Troup 已提交
276 277 278 279
    # Check for overwrite permission on existent files
    if os.path.exists(dest) and not os.access(dest, os.W_OK):
        raise cant_overwrite_exc
    shutil.copy2(src, dest);
J
James Troup 已提交
280 281 282
    os.chmod(dest, 0664);
    os.unlink(src);

J
James Troup 已提交
283
def copy (src, dest):
J
James Troup 已提交
284
    if os.path.exists(dest) and os.path.isdir(dest):
J
James Troup 已提交
285 286 287 288 289 290 291 292
	dest_dir = dest;
    else:
	dest_dir = os.path.dirname(dest);
    if not os.path.exists(dest_dir):
	umask = os.umask(00000);
	os.makedirs(dest_dir, 02775);
	os.umask(umask);
    #print "Copying %s to %s..." % (src, dest);
J
James Troup 已提交
293
    if os.path.exists(dest) and os.path.isdir(dest):
294
	dest = dest + '/' + os.path.basename(src);
J
James Troup 已提交
295 296 297
    if os.path.exists(dest) and not os.access(dest, os.W_OK):
        raise cant_overwrite_exc
    shutil.copy2(src, dest);
J
James Troup 已提交
298 299
    os.chmod(dest, 0664);

J
James Troup 已提交
300 301 302 303 304 305 306 307 308 309
######################################################################################

# FIXME: this is inherently nasty.  Can't put this mapping in a conf
# file because the conf file depends on the archive.. doh.  Maybe an
# archive independent conf file is needed.

def where_am_i ():
    res = socket.gethostbyaddr(socket.gethostname());
    if res[0] == 'pandora.debian.org':
        return 'non-US';
J
James Troup 已提交
310
    elif res[0] == 'auric.debian.org':
J
James Troup 已提交
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
        return 'ftp-master';
    else:
        raise unknown_hostname_exc, res;

######################################################################################

# FIXME: this isn't great either.

def which_conf_file ():
    archive = where_am_i ();
    if archive == 'non-US':
        return '/org/non-us.debian.org/katie/katie.conf-non-US';
    elif archive == 'ftp-master':
        return '/org/ftp.debian.org/katie/katie.conf';
    else:
        raise unknown_hostname_exc, archive

######################################################################################

330 331 332 333 334 335 336 337 338
# Escape characters which have meaning to SQL's regex comparison operator ('~')
# (woefully incomplete)

def regex_safe (s):
    s = string.replace(s, '+', '\\\\+');
    return s

######################################################################################

J
James Troup 已提交
339 340 341 342 343 344 345 346 347
def size_type (c):
    t  = " b";
    if c > 10000:
        c = c / 1000;
        t = " Kb";
    if c > 10000:
        c = c / 1000;
        t = " Mb";
    return ("%d%s" % (c, t))