2003-03-20 16:52:30 +00:00
|
|
|
#! /usr/bin/perl -w
|
|
|
|
|
2003-03-20 22:23:48 +00:00
|
|
|
use strict;
|
|
|
|
use FileHandle;
|
|
|
|
use File::Spec;
|
|
|
|
|
2003-03-21 14:10:06 +00:00
|
|
|
my $outdir = File::Spec->rel2abs($ARGV[0]);
|
|
|
|
my $netdir = File::Spec->rel2abs($ARGV[1]);
|
2003-03-20 22:23:48 +00:00
|
|
|
|
|
|
|
my %donetmpls = ();
|
|
|
|
|
2003-03-21 14:10:06 +00:00
|
|
|
sub fetchFile {
|
|
|
|
my $loc = shift;
|
|
|
|
|
|
|
|
if ($loc =~ /^([+\w\d\.\/-]+)$/) {
|
|
|
|
return $1;
|
|
|
|
} elsif ($loc =~ /^url\((.*)\)$/) {
|
|
|
|
my $url = $1;
|
|
|
|
$url =~ /\/([^\/]+)$/ || die "invalid url $url";
|
|
|
|
my $fn = "$netdir/$1";
|
|
|
|
if (! -f $fn) {
|
|
|
|
print "fetching $url...\n";
|
|
|
|
system "cd $netdir; wget --quiet -N $url";
|
|
|
|
if ($? != 0) {
|
|
|
|
unlink($fn);
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $fn;
|
|
|
|
} else {
|
|
|
|
die "invalid file specified $loc";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-20 22:23:48 +00:00
|
|
|
sub convert {
|
|
|
|
my $descr = shift;
|
|
|
|
|
|
|
|
if (defined $donetmpls{$descr}) {
|
|
|
|
return $donetmpls{$descr};
|
2003-03-20 16:52:30 +00:00
|
|
|
}
|
|
|
|
|
2003-03-20 22:23:48 +00:00
|
|
|
my ($x, $dir, $fn) = File::Spec->splitpath($descr);
|
|
|
|
|
|
|
|
print "$descr\n";
|
|
|
|
|
|
|
|
my $IN = new FileHandle;
|
|
|
|
my $OUT = new FileHandle;
|
|
|
|
my $outfile = "$outdir/$fn";
|
|
|
|
open $IN, "< $descr" or die "cannot open $descr";
|
|
|
|
open $OUT, "> $outfile" or die "cannot create $outfile";
|
|
|
|
|
|
|
|
while (<$IN>) {
|
|
|
|
chomp;
|
|
|
|
|
2003-03-21 14:10:06 +00:00
|
|
|
if (/^(\w+)\s*=\s*([^\#\s]*)\s*(\#.*)?$/) {
|
|
|
|
my ($name, $loc) = ($1, $2);
|
|
|
|
my $file = fetchFile($loc);
|
2003-03-20 22:23:48 +00:00
|
|
|
$file = File::Spec->rel2abs($file, $dir);
|
|
|
|
my $out = `md5sum $file`;
|
|
|
|
die unless ($? == 0);
|
|
|
|
$out =~ /^([0-9a-f]+)\s/;
|
|
|
|
my $hash = $1;
|
|
|
|
print $OUT "$name = $hash\n";
|
|
|
|
} elsif (/^(\w+)\s*<-\s*([+\w\d\.\/-]+)\s*(\#.*)?$/) {
|
|
|
|
my $name = $1;
|
|
|
|
my $file = $2;
|
|
|
|
$file = File::Spec->rel2abs($file, $dir);
|
|
|
|
$file = convert($file);
|
|
|
|
my $out = `md5sum $file`;
|
|
|
|
die unless ($? == 0);
|
|
|
|
$out =~ /^([0-9a-f]+)\s/;
|
|
|
|
my $hash = $1;
|
|
|
|
print $OUT "$name <- $hash\n";
|
|
|
|
} else {
|
|
|
|
print $OUT "$_\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$donetmpls{$descr} = $outfile;
|
|
|
|
return $outfile;
|
2003-03-20 16:52:30 +00:00
|
|
|
}
|
|
|
|
|
2003-03-21 14:10:06 +00:00
|
|
|
for (my $i = 2; $i < scalar @ARGV; $i++) {
|
2003-03-20 22:23:48 +00:00
|
|
|
convert(File::Spec->rel2abs($ARGV[$i]));
|
|
|
|
}
|