1 2 3 4 5 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 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
|
#!/usr/bin/perl -w
# Generates a mirrors_<type>.h file, reading from Mirrors.masterlist.
# Note that there will be duplicate strings in the generated file.
# I am relying on the c compiler to fix this, which gcc does.
#
# Pass in the type of mirror we are interested in (http or ftp),
# or use httplist or ftplist to generate a list of country codes for the
# mirror type.
use strict;
my $type = shift || die "please specify mirror type\n";
my $input = shift;
$input = 'Mirrors.masterlist' unless defined $input;
my $hostarch=$ENV{DEB_HOST_ARCH};
if (! defined $hostarch) {
$hostarch=`dpkg-architecture -qDEB_HOST_ARCH`;
chomp $hostarch;
}
my $iso3166xml = '/usr/share/xml/iso-codes/iso_3166.xml';
my %iso3166;
open ISO3166TAB, '-|:utf8', './iso3166tab.py', "$iso3166xml"
or die "open iso3166tab.py $iso3166xml: $!";
while (<ISO3166TAB>) {
/^([A-Z]+)\t(.*)$/ or next;
$iso3166{$1} = $2;
}
close ISO3166TAB;
# Slurp in the mirror file.
my @data;
my %countries;
my %http_countries;
my %ftp_countries;
my $id=-1; # incremented to 0 when first site is seen
open (IN, $input) or die "$input: $!";
while (<IN>) {
chomp;
if (m/([^:]*):\s+(.*)/) {
my $key = lc $1;
my $value = $2;
if (lc $key eq 'site') {
$id++;
$data[$id]->{site} = $value;
}
elsif (lc $key eq 'country') {
$value =~ s/ .*//;
$value = uc $value;
$data[$id]->{$key} = $value;
}
else {
$data[$id]->{$key} = $value;
}
}
}
close IN;
# Look for entries in $input matching ${CC}, and expand them out to one
# entry for every country code in iso_3166.xml, with the following
# substitution variables:
# ${CC}: lower-case country code
# ${UCC}: upper-case country code
# ${CNAME}: country name
# This is useful if you have a mirror hierarchy using wildcard DNS.
# Use a C-style for loop because we may modify $id in the middle of it.
for (my $id = 0; $id < @data; $id++) {
if ($data[$id]->{site} =~ /\${CC}/) {
my @expanded;
foreach my $cc (sort keys %iso3166) {
my %entry = %{$data[$id]};
for my $field (keys %entry) {
$entry{$field} =~ s/\${CC}/lc($cc)/eg;
$entry{$field} =~ s/\${UCC}/uc($cc)/eg;
$entry{$field} =~ s/\${CNAME}/$iso3166{$cc}/g;
}
push @expanded, \%entry;
}
splice @data, $id, 1, @expanded;
$id += @expanded - 1;
}
}
# Poor man's mirror rating system: push-primary, push* (-secondary), others
foreach my $id (0..$#data) {
my $rating=0;
if (exists $data[$id]->{type}) {
$rating=1 if $data[$id]->{type} =~ /push/i;
$rating=2 if $data[$id]->{type} =~ /push-primary/i;
}
$data[$id]->{rating}=$rating;
}
my @newdata;
foreach my $id (0..$#data) {
if (exists $data[$id]->{'archive-architecture'} &&
$data[$id]->{'archive-architecture'} ne "any") {
my @arches = split ' ', $data[$id]->{'archive-architecture'};
if (grep /^!/, @arches) {
my %notarches = map { substr($_, 1) => 1 } grep /^!/, @arches;
next if exists $notarches{$hostarch};
} else {
my %arches = map { $_ => 1 } @arches;
next if not exists $arches{$hostarch};
}
}
push @newdata, $data[$id];
}
@data = @newdata;
if ($type =~ /(.*)list/) {
my $type=$1;
open (LIST, ">debian/${type}list-countries") or die "debian/${type}list-countries: $!";
foreach my $id (0..$#data) {
next unless exists $data[$id]->{"archive-$type"} and
exists $data[$id]->{country};
$countries{$data[$id]->{country}} = 1;
}
foreach my $country (sort (keys %countries)) {
print LIST "${country}\n";
}
close LIST;
}
else {
open (OUT, ">mirrors_$type.h") or die "mirrors_$type.h: $!";
print OUT "/* Automatically generated; do not edit. */\n";
# Now output the mirror list. It is ordered with better mirrors
# near the top.
print OUT "static struct mirror_t mirrors_$type\[] = {\n";
my $q='"';
foreach my $id (sort { $data[$b]->{rating} <=> $data[$a]->{rating} } 0..$#data) {
next unless exists $data[$id]->{"archive-$type"} and
exists $data[$id]->{country};
if (! exists $data[$id]->{'archive-architecture'}) {
print STDERR "warning: missing archive-architecture for mirror ".$data[$id]->{site}."; assuming it contains all architectures.\n";
}
print OUT "\t{",
join(", ", $q.$data[$id]->{site}.$q, $q.$data[$id]->{country}.$q,
$q.$data[$id]->{"archive-$type"}.$q),
"},\n";
}
print OUT "\t{NULL, NULL, NULL}\n";
print OUT "};\n";
close OUT;
}
|