jeri 11.7 KB
Newer Older
J
new  
James Troup 已提交
1 2 3
#!/usr/bin/env python

# Dependency check proposed-updates
J
James Troup 已提交
4
# Copyright (C) 2001, 2002  James Troup <james@nocrew.org>
5
# $Id: jeri,v 1.9 2002-06-08 00:17:59 troup Exp $
J
new  
James Troup 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

# 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

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

# <aj> ARRRGGGHHH
# <aj> what's wrong with me!?!?!?
# <aj> i was just nice to some mormon doorknockers!!!
# <Omnic> AJ?!?!
# <aj> i know!!!!!
# <Omnic> I'm gonna have to kick your ass when you come over
# <Culus> aj: GET THE HELL OUT OF THE CABAL! :P

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

import pg, sys, os, string
import utils, db_access
import apt_pkg, apt_inst;

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

Cnf = None;
projectB = None;
41
Options = None;
J
new  
James Troup 已提交
42 43 44 45 46 47
stable = {};
stable_virtual = {};
architectures = None;

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

48 49 50 51 52 53 54 55 56 57 58 59 60
def usage (exit_code=0):
    print """Usage: jeri [OPTION] <CHANGES FILE | DEB FILE | ADMIN FILE>[...]
Remove obsolete changes files from proposed-updates.

  -q, --quiet                be quieter about what is being done
  -v, --verbose              be more verbose about what is being done
  -h, --help                 show this help and exit

Need either changes files, deb files or an admin.txt file with a '.joey' suffix."""
    sys.exit(exit_code)

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

J
new  
James Troup 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
def pp_dep (deps):
    pp_deps = [];
    for atom in deps:
        (pkg, version, constraint) = atom;
        if constraint:
            pp_dep = "%s (%s %s)" % (pkg, constraint, version);
        else:
            pp_dep = pkg;
        pp_deps.append(pp_dep);
    return string.join(pp_deps, " |");

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

def d_test (dict, key, positive, negative):
    if not dict:
        return negative;
    if dict.has_key(key):
        return positive;
    else:
        return negative;

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

def check_dep (depends, dep_type, check_archs, filename, files):
    pkg_unsat = 0;
    for arch in check_archs:
        for parsed_dep in apt_pkg.ParseDepends(depends):
            unsat = [];
            for atom in parsed_dep:
                (dep, version, constraint) = atom;
                # As a real package?
                if stable.has_key(dep):
                    if stable[dep].has_key(arch):
                        if apt_pkg.CheckDep(stable[dep][arch], constraint, version):
                            if Options["debug"]:
                                print "Found %s as a real package." % (pp_dep(parsed_dep));
                            unsat = 0;
                            break;
                # As a virtual?
                if stable_virtual.has_key(dep):
                    if stable_virtual[dep].has_key(arch):
                        if not constraint and not version:
                            if Options["debug"]:
                                print "Found %s as a virtual package." % (pp_dep(parsed_dep));
                            unsat = 0;
                            break;
                # As part of the same .changes?
                epochless_version = utils.re_no_epoch.sub('', version)
                dep_filename = "%s_%s_%s.deb" % (dep, epochless_version, arch);
                if files.has_key(dep_filename):
                    if Options["debug"]:
                        print "Found %s in the same upload." % (pp_dep(parsed_dep));
                    unsat = 0;
                    break;
                # Not found...
                # [FIXME: must be a better way ... ]
                error = "%s not found. [Real: " % (pp_dep(parsed_dep))
                if stable.has_key(dep):
                    if stable[dep].has_key(arch):
                        error = error + "%s:%s:%s" % (dep, arch, stable[dep][arch]);
                    else:
                        error = error + "%s:-:-" % (dep);
                else:
                    error = error + "-:-:-";
                error = error + ", Virtual: ";
                if stable_virtual.has_key(dep):
                    if stable_virtual[dep].has_key(arch):
                        error = error + "%s:%s" % (dep, arch);
                    else:
                        error = error + "%s:-";
                else:
                    error = error + "-:-";
                error = error + ", Upload: ";
                if files.has_key(dep_filename):
                    error = error + "yes";
                else:
                    error = error + "no";
                error = error + "]";
                unsat.append(error);

            if unsat:
                sys.stderr.write("MWAAP! %s: '%s' %s can not be satisifed:\n" % (filename, pp_dep(parsed_dep), dep_type));
                for error in unsat:
                    sys.stderr.write("  %s\n" % (error));
                pkg_unsat = 1;

    return pkg_unsat;

def check_package(filename, files):
    try:
        control = apt_pkg.ParseSection(apt_inst.debExtractControl(utils.open_file(filename)));
    except:
        utils.warn("%s: debExtractControl() raised %s." % (filename, sys.exc_type));
        return 1;
    Depends = control.Find("Depends");
    Pre_Depends = control.Find("Pre-Depends");
157
    #Recommends = control.Find("Recommends");
J
new  
James Troup 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
    pkg_arch = control.Find("Architecture");
    base_file = os.path.basename(filename);
    if pkg_arch == "all":
        check_archs = architectures;
    else:
        check_archs = [pkg_arch];

    pkg_unsat = 0;
    if Pre_Depends:
        pkg_unsat = pkg_unsat + check_dep(Pre_Depends, "pre-dependency", check_archs, base_file, files);

    if Depends:
        pkg_unsat = pkg_unsat + check_dep(Depends, "dependency", check_archs, base_file, files);
    #if Recommends:
    #pkg_unsat = pkg_unsat + check_dep(Recommends, "recommendation", check_archs, base_file, files);

    return pkg_unsat;

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

def pass_fail (filename, result):
    if not Options["quiet"]:
        print "%s:" % (os.path.basename(filename)),
        if result:
            print "FAIL";
        else:
            print "ok";

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

def check_changes (filename):
    try:
190 191
        changes = utils.parse_changes(filename);
        files = utils.build_file_list(changes);
J
new  
James Troup 已提交
192 193 194 195 196 197 198 199 200
    except:
        utils.warn("Error parsing changes file '%s'" % (filename));
        return;

    result = 0;

    # Move to the pool directory
    cwd = os.getcwd();
    file = files.keys()[0];
J
James Troup 已提交
201
    pool_dir = Cnf["Dir::Pool"] + '/' + utils.poolify(changes["source"], files[file]["component"]);
J
new  
James Troup 已提交
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 228 229
    os.chdir(pool_dir);

    changes_result = 0;
    for file in files.keys():
        if file[-4:] == ".deb":
            result = check_package(file, files);
            if Options["verbose"]:
                pass_fail(file, result);
            changes_result = changes_result + result;

    pass_fail (filename, changes_result);

    # Move back
    os.chdir(cwd);

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

def check_deb (filename):
    result = check_package(filename, {});
    pass_fail(filename, result);


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

def check_joey (filename):
    file = utils.open_file(filename);

    cwd = os.getcwd();
J
James Troup 已提交
230
    os.chdir("%s/dists/proposed-updates" % (Cnf["Dir::Root"]));
J
new  
James Troup 已提交
231 232

    for line in file.readlines():
233
        line = string.rstrip(line);
J
new  
James Troup 已提交
234 235
        if string.find(line, 'install') != -1:
            split_line = string.split(line);
236 237
            if len(split_line) != 2:
                utils.fubar("Parse error (not exactly 2 elements): %s" % (line));
J
new  
James Troup 已提交
238 239 240 241 242 243 244
            install_type = split_line[0];
            if [ "install", "install-u", "sync-install" ].count(install_type) == 0:
                utils.fubar("Unknown install type ('%s') from: %s" % (install_type, line));
            changes_filename = split_line[1]
            if Options["debug"]:
                print "Processing %s..." % (changes_filename);
            check_changes(changes_filename);
245
    file.close();
J
new  
James Troup 已提交
246 247 248 249 250 251 252 253 254 255 256

    os.chdir(cwd);

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

def parse_packages():
    global stable, stable_virtual, architectures;

    # Parse the Packages files (since it's a sub-second operation on auric)
    suite = "stable";
    stable = {};
257
    components = Cnf.ValueList("Suite::%s::Components" % (suite));
258
    architectures = filter(utils.real_arch, Cnf.ValueList("Suite::%s::Architectures" % (suite)));
J
new  
James Troup 已提交
259 260
    for component in components:
        for architecture in architectures:
J
James Troup 已提交
261
            filename = "%s/dists/%s/%s/binary-%s/Packages" % (Cnf["Dir::Root"], suite, component, architecture);
J
new  
James Troup 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
            packages = utils.open_file(filename, 'r');
            Packages = apt_pkg.ParseTagFile(packages);
            while Packages.Step():
                package = Packages.Section.Find('Package');
                version = Packages.Section.Find('Version');
                provides = Packages.Section.Find('Provides');
                if not stable.has_key(package):
                    stable[package] = {};
                stable[package][architecture] = version;
                if provides:
                    for virtual_pkg in string.split(provides,","):
                        virtual_pkg = string.strip(virtual_pkg);
                        if not stable_virtual.has_key(virtual_pkg):
                            stable_virtual[virtual_pkg] = {};
                        stable_virtual[virtual_pkg][architecture] = "NA";
277
            packages.close()
J
new  
James Troup 已提交
278 279 280 281 282 283

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

def main ():
    global Cnf, projectB, Options;

284
    Cnf = utils.get_conf()
J
new  
James Troup 已提交
285

286 287
    Arguments = [('d', "debug", "Jeri::Options::Debug"),
                 ('q',"quiet","Jeri::Options::Quiet"),
J
new  
James Troup 已提交
288
                 ('v',"verbose","Jeri::Options::Verbose"),
289
                 ('h',"help","Jeri::Options::Help")];
290
    for i in [ "debug", "quiet", "verbose", "help" ]:
291 292
	if not Cnf.has_key("Jeri::Options::%s" % (i)):
	    Cnf["Jeri::Options::%s" % (i)] = "";
J
new  
James Troup 已提交
293 294 295 296 297 298

    arguments = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
    Options = Cnf.SubTree("Jeri::Options")

    if Options["Help"]:
        usage(0);
299
    if not arguments:
J
new  
James Troup 已提交
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
        utils.fubar("need at least one package name as an argument.");

    projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
    db_access.init(Cnf, projectB);

    print "Parsing packages files...",
    parse_packages();
    print "done.";

    for file in arguments:
        if file[-8:] == ".changes":
            check_changes(file);
        elif file[-4:] == ".deb":
            check_deb(file);
        elif file[-5:] == ".joey":
            check_joey(file);
        else:
            utils.fubar("Unrecognised file type: '%s'." % (file));

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

if __name__ == '__main__':
    main()