gecko-dev/config/make-jars.pl

163 lines
3.7 KiB
Perl

#!/perl
# make-jars [-d <destPath>] < <jar.mn>
use Getopt::Std;
use Cwd;
use File::stat;
use Time::localtime;
@cleanupList = ();
$IS_DIR = 1;
$IS_FILE = 2;
sub Cleanup
{
while (true) {
my $isDir = pop(@cleanupList);
if ($isDir == undef) {
return 0;
}
my $path = pop(@cleanupList);
if ($isDir == $IS_DIR) {
rmdir($path) || die "can't remove dir $path: $!";
}
else {
unlink($path) || die "can't remove file $path: $!";
}
}
}
sub JarIt
{
my ($jarfile, $args) = @_;
system "zip -u $jarfile $args\n";
my $cwd = cwd();
print "+++ jarred $cwd => $jarfile\n";
Cleanup();
}
sub MkDirs
{
my ($path, $containingDir) = @_;
#print "MkDirs $path $containingDir\n";
if ($path =~ /([\w\d.\-]+)[\\\/](.*)/) {
my $dir = $1;
$path = $2;
if (!-e $dir) {
#print "making dir $containingDir/$dir\n";
mkdir($dir, 0777) || die "error: can't create '$dir': $!";
push(@cleanupList, "$containingDir/$dir");
push(@cleanupList, $IS_DIR);
}
chdir $dir;
MkDirs($path, "$containingDir/$dir");
chdir "..";
}
else {
my $dir = $path;
if ($dir eq "") { return 0; }
if (!-e $dir) {
#print "making dir $containingDir/$dir\n";
mkdir($dir, 0777) || die "error: can't create '$dir': $!";
push(@cleanupList, "$containingDir/$dir");
push(@cleanupList, $IS_DIR);
}
}
}
sub CopyFile
{
my ($from, $to) = @_;
#print "copying $from to $to\n";
open(OUT, ">$to") || die "error: can't open '$to': $!";
open(IN, "<$from") || die "error: can't open '$from': $!";
while (<IN>) {
print OUT $_;
}
close(IN) || die "error: can't close '$from': $!";
close(OUT) || die "error: can't close '$to': $!";
# fix the mod date so we don't jar everything (is this faster than just jarring everything?)
my $atime = stat($from)->atime || die $!;
my $mtime = stat($from)->mtime || die $!;
utime($atime, $mtime, $to);
push(@cleanupList, "$to");
push(@cleanupList, $IS_FILE);
}
sub EnsureFileInDir
{
my ($destPath, $srcPath) = @_;
if (!-e $destPath) {
my $dir = "";
my $file;
if ($destPath =~ /([\w\d.\-\\\/]+)[\\\/]([\w\d.\-]+)/) {
$dir = $1;
$file = $2;
}
else {
$file = $destPath;
}
if ($srcPath) {
$file = $srcPath;
}
if (!-e $file) {
die "error: file '$file' doesn't exist\n";
}
MkDirs($dir, ".");
CopyFile($file, $destPath);
return 1;
}
return 0;
}
getopt("d:");
my $destPath = ".";
if (defined($opt_d)) {
$destPath = $opt_d;
}
while (<>) {
chomp;
start:
if (/^([\w\d.\-\\\/]+)\:\s*$/) {
my $jarfile = "$destPath/$1";
my $args = "";
while (<>) {
if (/^\s+([\w\d.\-\\\/]+)\s*(\([\w\d.\-\\\/]+\))?$\s*/) {
my $dest = $1;
my $srcPath = $2;
if ( $srcPath ) {
$srcPath = substr($srcPath,1,-1);
}
EnsureFileInDir($dest, $srcPath);
$args = "$args$dest ";
} elsif (/^\s*$/) {
# end with blank line
last;
} else {
JarIt($jarfile, $args);
goto start;
}
}
JarIt($jarfile, $args);
} elsif (/^\s*\#.*$/) {
# skip comments
} elsif (/^\s*$/) {
# skip blank lines
} else {
close;
die "bad jar rule head at: $_";
}
}