jenna 17.4 KB
Newer Older
J
James Troup 已提交
1 2
#!/usr/bin/env python

J
James Troup 已提交
3
# Generate file lists used by apt-ftparchive to generate Packages and Sources files
4
# Copyright (C) 2000, 2001, 2002, 2003, 2004  James Troup <james@nocrew.org>
5
# $Id: jenna,v 1.28 2004-06-17 15:02:02 troup Exp $
J
James Troup 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

# 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

J
James Troup 已提交
21
################################################################################
J
James Troup 已提交
22

J
James Troup 已提交
23 24 25 26 27 28 29 30 31 32 33
# <elmo> I'm doing it in python btw.. nothing against your monster
#        SQL, but the python wins in terms of speed and readiblity
# <aj> bah
# <aj> you suck!!!!!
# <elmo> sorry :(
# <aj> you are not!!!
# <aj> you mock my SQL!!!!
# <elmo> you want have contest of skillz??????
# <aj> all your skillz are belong to my sql!!!!
# <elmo> yo momma are belong to my python!!!!
# <aj> yo momma was SQLin' like a pig last night!
J
James Troup 已提交
34

J
James Troup 已提交
35
################################################################################
J
James Troup 已提交
36

J
James Troup 已提交
37 38 39
import copy, os, pg, string, sys;
import apt_pkg;
import claire, db_access, logging, utils;
J
James Troup 已提交
40

J
James Troup 已提交
41 42
################################################################################

J
James Troup 已提交
43 44
projectB = None;
Cnf = None;
J
James Troup 已提交
45
Logger = None;
J
James Troup 已提交
46 47 48 49 50
Options = None;

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

def Dict(**dict): return dict
J
James Troup 已提交
51

J
James Troup 已提交
52 53 54 55 56 57 58 59 60
################################################################################

def usage (exit_code=0):
    print """Usage: jenna [OPTION]
Write out file lists suitable for use with apt-ftparchive.

  -a, --architecture=ARCH   only write file lists for this architecture
  -c, --component=COMPONENT only write file lists for this component
  -h, --help                show this help and exit
J
James Troup 已提交
61 62
  -n, --no-delete           don't delete older versions
  -s, --suite=SUITE         only write file lists for this suite
J
James Troup 已提交
63

J
James Troup 已提交
64
ARCH, COMPONENT and SUITE can be space separated lists, e.g.
J
James Troup 已提交
65 66
    --architecture=\"m68k i386\"""";
    sys.exit(exit_code);
J
James Troup 已提交
67 68 69

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

J
James Troup 已提交
70 71
def version_cmp(a, b):
    return -apt_pkg.VersionCompare(a[0], b[0]);
J
James Troup 已提交
72

J
James Troup 已提交
73
#####################################################
J
James Troup 已提交
74

J
James Troup 已提交
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
def delete_packages(delete_versions, pkg, dominant_arch, suite,
                    dominant_version, delete_table, delete_col, packages):
    suite_id = db_access.get_suite_id(suite);
    for version in delete_versions:
        delete_unique_id = version[1];
        if not packages.has_key(delete_unique_id):
            continue;
        delete_version = version[0];
        delete_id = packages[delete_unique_id]["id"];
        delete_arch = packages[delete_unique_id]["arch"];
        if not Cnf.Find("Suite::%s::Untouchable" % (suite)):
            if Options["No-Delete"]:
                print "Would delete %s_%s_%s in %s in favour of %s_%s" % (pkg, delete_arch, delete_version, suite, dominant_version, dominant_arch);
            else:
                Logger.log(["dominated", pkg, delete_arch, delete_version, dominant_version, dominant_arch]);
                projectB.query("DELETE FROM %s WHERE suite = %s AND %s = %s" % (delete_table, suite_id, delete_col, delete_id));
            del packages[delete_unique_id];
        else:
            if Options["No-Delete"]:
                print "Would delete %s_%s_%s in favour of %s_%s, but %s is untouchable" % (pkg, delete_arch, delete_version, dominant_version, dominant_arch, suite);
            else:
                Logger.log(["dominated but untouchable", pkg, delete_arch, delete_version, dominant_version, dominant_arch]);

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

# Per-suite&pkg: resolve arch-all, vs. arch-any, assumes only one arch-all
def resolve_arch_all_vs_any(versions, packages):
    arch_all_version = None;
    arch_any_versions = copy.copy(versions);
    for i in arch_any_versions:
        unique_id = i[1];
        arch = packages[unique_id]["arch"];
        if arch == "all":
J
James Troup 已提交
108
            arch_all_versions = [i];
J
James Troup 已提交
109 110 111 112 113 114 115 116 117 118 119
            arch_all_version = i[0];
            arch_any_versions.remove(i);
    # Sort arch: any versions into descending order
    arch_any_versions.sort(version_cmp);
    highest_arch_any_version = arch_any_versions[0][0];

    pkg = packages[unique_id]["pkg"];
    suite = packages[unique_id]["suite"];
    delete_table = "bin_associations";
    delete_col = "bin";

120
    if apt_pkg.VersionCompare(highest_arch_any_version, arch_all_version) < 1:
J
James Troup 已提交
121 122 123
        # arch: all dominates
        delete_packages(arch_any_versions, pkg, "all", suite,
                        arch_all_version, delete_table, delete_col, packages);
J
James Troup 已提交
124
    else:
J
James Troup 已提交
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
        # arch: any dominates
        delete_packages(arch_all_versions, pkg, "any", suite,
                        highest_arch_any_version, delete_table, delete_col,
                        packages);

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

# Per-suite&pkg&arch: resolve duplicate versions
def remove_duplicate_versions(versions, packages):
    # Sort versions into descending order
    versions.sort(version_cmp);
    dominant_versions = versions[0];
    dominated_versions = versions[1:];
    (dominant_version, dominant_unqiue_id) = dominant_versions;
    pkg = packages[dominant_unqiue_id]["pkg"];
    arch = packages[dominant_unqiue_id]["arch"];
    suite = packages[dominant_unqiue_id]["suite"];
    if arch == "source":
        delete_table = "src_associations";
        delete_col = "source";
    else: # !source
        delete_table = "bin_associations";
        delete_col = "bin";
    # Remove all but the highest
    delete_packages(dominated_versions, pkg, arch, suite,
                    dominant_version, delete_table, delete_col, packages);
J
James Troup 已提交
151
    return [dominant_versions];
J
James Troup 已提交
152 153 154 155 156 157 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

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

def cleanup(packages):
    # Build up the index used by the clean up functions
    d = {};
    for unique_id in packages.keys():
        suite = packages[unique_id]["suite"];
        pkg = packages[unique_id]["pkg"];
        arch = packages[unique_id]["arch"];
        version = packages[unique_id]["version"];
        if not d.has_key(suite):
            d[suite] = {};
        if not d[suite].has_key(pkg):
            d[suite][pkg] = {};
        if not d[suite][pkg].has_key(arch):
            d[suite][pkg][arch] = [];
        d[suite][pkg][arch].append([version, unique_id]);
    # Clean up old versions
    for suite in d.keys():
        for pkg in d[suite].keys():
            for arch in d[suite][pkg].keys():
                versions = d[suite][pkg][arch];
                if len(versions) > 1:
                    d[suite][pkg][arch] = remove_duplicate_versions(versions, packages);

    # Arch: all -> any and vice versa
    for suite in d.keys():
        for pkg in d[suite].keys():
            arches = d[suite][pkg];
            # If we don't have any arch: all; we've nothing to do
            if not arches.has_key("all"):
                continue;
            # Check to see if we have arch: all and arch: !all (ignoring source)
            num_arches = len(arches.keys());
            if arches.has_key("source"):
188
                num_arches -= 1;
J
James Troup 已提交
189 190 191 192 193 194
            # If we do, remove the duplicates
            if num_arches > 1:
                versions = [];
                for arch in arches.keys():
                    if arch != "source":
                        versions.extend(d[suite][pkg][arch]);
J
James Troup 已提交
195
                resolve_arch_all_vs_any(versions, packages);
J
James Troup 已提交
196 197 198 199 200 201 202 203 204 205 206 207 208 209

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

def write_legacy_mixed_filelist(suite, list, packages, dislocated_files):
    # Work out the filename
    filename = os.path.join(Cnf["Dir::Lists"], "%s_-_all.list" % (suite));
    output = utils.open_file(filename, "w");
    # Generate the final list of files
    files = {};
    for id in list:
        path = packages[id]["path"];
        filename = packages[id]["filename"];
        file_id = packages[id]["file_id"];
        if suite == "stable" and dislocated_files.has_key(file_id):
J
James Troup 已提交
210
            filename = dislocated_files[file_id];
211 212
        else:
            filename = path + filename;
J
James Troup 已提交
213 214
        if files.has_key(filename):
            utils.warn("%s (in %s) is duplicated." % (filename, suite));
215
        else:
J
James Troup 已提交
216 217 218 219
            files[filename] = "";
    # Sort the files since apt-ftparchive doesn't
    keys = files.keys();
    keys.sort();
220
    # Write the list of files out
J
James Troup 已提交
221 222 223 224 225 226 227 228 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 254 255 256 257
    for file in keys:
        output.write(file+'\n')
    output.close();

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

def write_filelist(suite, component, arch, type, list, packages, dislocated_files):
    # Work out the filename
    if arch != "source":
        if type == "udeb":
            arch = "debian-installer_binary-%s" % (arch);
        elif type == "deb":
            arch = "binary-%s" % (arch);
    filename = os.path.join(Cnf["Dir::Lists"], "%s_%s_%s.list" % (suite, component, arch));
    output = utils.open_file(filename, "w");
    # Generate the final list of files
    files = {};
    for id in list:
        path = packages[id]["path"];
        filename = packages[id]["filename"];
        file_id = packages[id]["file_id"];
        pkg = packages[id]["pkg"];
        if suite == "stable" and dislocated_files.has_key(file_id):
            filename = dislocated_files[file_id];
        else:
            filename = path + filename;
        if files.has_key(pkg):
            utils.warn("%s (in %s/%s, %s) is duplicated." % (pkg, suite, component, filename));
        else:
            files[pkg] = filename;
    # Sort the files since apt-ftparchive doesn't
    pkgs = files.keys();
    pkgs.sort();
    # Write the list of files out
    for pkg in pkgs:
        output.write(files[pkg]+'\n')
    output.close();
258

J
James Troup 已提交
259
################################################################################
260

J
James Troup 已提交
261 262
def write_filelists(packages, dislocated_files):
    # Build up the index to iterate over
263
    d = {};
J
James Troup 已提交
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
    for unique_id in packages.keys():
        suite = packages[unique_id]["suite"];
        component = packages[unique_id]["component"];
        arch = packages[unique_id]["arch"];
        type = packages[unique_id]["type"];
        if not d.has_key(suite):
            d[suite] = {};
        if not d[suite].has_key(component):
            d[suite][component] = {};
        if not d[suite][component].has_key(arch):
            d[suite][component][arch] = {};
        if not d[suite][component].has_key(arch):
            d[suite][component][arch] = {};
        if not d[suite][component][arch].has_key(type):
            d[suite][component][arch][type] = [];
        d[suite][component][arch][type].append(unique_id);
    # Flesh out the index
    if not Options["Suite"]:
        suites = Cnf.SubTree("Suite").List();
    else:
284
        suites = Options["Suite"].split();
J
James Troup 已提交
285 286 287 288 289
    for suite in map(string.lower, suites):
        if not d.has_key(suite):
            d[suite] = {};
        if not Options["Component"]:
            components = Cnf.ValueList("Suite::%s::Components" % (suite));
290
        else:
291
            components = Options["Component"].split();
J
James Troup 已提交
292
        udeb_components = Cnf.ValueList("Suite::%s::UdebComponents" % (suite));
J
James Troup 已提交
293 294
        udeb_components = udeb_components;
        for component in components:
J
James Troup 已提交
295 296 297 298
            if not d[suite].has_key(component):
                d[suite][component] = {};
            if component in udeb_components:
                binary_types = [ "deb", "udeb" ];
J
James Troup 已提交
299
            else:
J
James Troup 已提交
300 301 302 303
                binary_types = [ "deb" ];
            if not Options["Architecture"]:
                architectures = Cnf.ValueList("Suite::%s::Architectures" % (suite));
            else:
304
                architectures = Options["Architectures"].split();
J
James Troup 已提交
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
            for arch in map(string.lower, architectures):
                if not d[suite][component].has_key(arch):
                    d[suite][component][arch] = {};
                if arch == "source":
                    types = [ "dsc" ];
                else:
                    types = binary_types;
                for type in types:
                    if not d[suite][component][arch].has_key(type):
                        d[suite][component][arch][type] = [];
    # Then walk it
    for suite in d.keys():
        if Cnf.has_key("Suite::%s::Components" % (suite)):
            for component in d[suite].keys():
                for arch in d[suite][component].keys():
                    if arch == "all":
                        continue;
                    for type in d[suite][component][arch].keys():
                        list = d[suite][component][arch][type];
                        # If it's a binary, we need to add in the arch: all debs too
                        if arch != "source" and d[suite][component].has_key("all") \
                           and d[suite][component]["all"].has_key(type):
                            list.extend(d[suite][component]["all"][type]);
                        write_filelist(suite, component, arch, type, list,
                                       packages, dislocated_files);
        else: # legacy-mixed suite
            list = [];
            for component in d[suite].keys():
                for arch in d[suite][component].keys():
                    for type in d[suite][component][arch].keys():
                        list.extend(d[suite][component][arch][type]);
            write_legacy_mixed_filelist(suite, list, packages, dislocated_files);
J
James Troup 已提交
337

J
James Troup 已提交
338
################################################################################
J
James Troup 已提交
339

J
James Troup 已提交
340 341 342 343 344 345 346 347 348 349 350 351
# Want to use stable dislocation support: True or false?
def stable_dislocation_p():
    # If the support is not explicitly enabled, assume it's disabled
    if not Cnf.FindB("Dinstall::StableDislocationSupport"):
        return 0;
    # If we don't have a stable suite, obviously a no-op
    if not Cnf.has_key("Suite::Stable"):
        return 0;
    # If the suite(s) weren't explicitly listed, all suites are done
    if not Options["Suite"]:
        return 1;
    # Otherwise, look in what suites the user specified
352
    suites = Options["Suite"].split();
353 354 355 356 357

    if "stable" in suites:
        return 1;
    else:
        return 0;
J
James Troup 已提交
358 359 360 361

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

def do_da_do_da():
J
James Troup 已提交
362 363
    (con_suites, con_architectures, con_components, check_source) = \
                 utils.parse_args(Options);
J
James Troup 已提交
364

J
James Troup 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378
    if stable_dislocation_p():
        dislocated_files = claire.find_dislocated_stable(Cnf, projectB);
    else:
        dislocated_files = {};

    query = """
SELECT b.id, b.package, a.arch_string, b.version, l.path, f.filename, c.name,
       f.id, su.suite_name, b.type
  FROM binaries b, bin_associations ba, architecture a, files f, location l,
       component c, suite su
  WHERE b.id = ba.bin AND b.file = f.id AND b.architecture = a.id
    AND f.location = l.id AND l.component = c.id AND ba.suite = su.id
    %s %s %s""" % (con_suites, con_architectures, con_components);
    if check_source:
379
        query += """
J
James Troup 已提交
380 381 382 383 384 385 386 387 388 389 390 391 392 393
UNION
SELECT s.id, s.source, 'source', s.version, l.path, f.filename, c.name, f.id,
       su.suite_name, 'dsc'
  FROM source s, src_associations sa, files f, location l, component c, suite su
  WHERE s.id = sa.source AND s.file = f.id AND f.location = l.id
    AND l.component = c.id AND sa.suite = su.id %s %s""" % (con_suites, con_components);
    q = projectB.query(query);
    ql = q.getresult();
    # Build up the main index of packages
    packages = {};
    unique_id = 0;
    for i in ql:
        (id, pkg, arch, version, path, filename, component, file_id, suite, type) = i;
        # 'id' comes from either 'binaries' or 'source', so it's not unique
394
        unique_id += 1;
J
James Troup 已提交
395 396 397 398 399 400
        packages[unique_id] = Dict(id=id, pkg=pkg, arch=arch, version=version,
                                   path=path, filename=filename,
                                   component=component, file_id=file_id,
                                   suite=suite, type = type);
    cleanup(packages);
    write_filelists(packages, dislocated_files);
J
James Troup 已提交
401

J
James Troup 已提交
402
################################################################################
J
James Troup 已提交
403

J
James Troup 已提交
404 405 406 407 408 409 410 411 412 413
def main():
    global Cnf, projectB, Options, Logger;

    Cnf = utils.get_conf();
    Arguments = [('a', "architecture", "Jenna::Options::Architecture", "HasArg"),
                 ('c', "component", "Jenna::Options::Component", "HasArg"),
                 ('h', "help", "Jenna::Options::Help"),
                 ('n', "no-delete", "Jenna::Options::No-Delete"),
                 ('s', "suite", "Jenna::Options::Suite", "HasArg")];
    for i in ["architecture", "component", "help", "no-delete", "suite" ]:
414 415
	if not Cnf.has_key("Jenna::Options::%s" % (i)):
	    Cnf["Jenna::Options::%s" % (i)] = "";
J
James Troup 已提交
416
    apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
J
James Troup 已提交
417 418 419
    Options = Cnf.SubTree("Jenna::Options");
    if Options["Help"]:
        usage();
J
James Troup 已提交
420

421
    projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]));
J
James Troup 已提交
422
    db_access.init(Cnf, projectB);
J
James Troup 已提交
423
    Logger = logging.Logger(Cnf, "jenna");
424
    do_da_do_da();
J
James Troup 已提交
425
    Logger.close();
J
James Troup 已提交
426

427 428
#########################################################################################

J
James Troup 已提交
429
if __name__ == '__main__':
J
James Troup 已提交
430
    main();