2001-09-12 18:06:07 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
# ex: set tabstop=4 expandtab :
|
|
|
|
#
|
2004-04-25 21:07:34 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is this file as it was released on September 12, 2001.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Michel C. C. Buijsman.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
2001-09-12 18:06:07 +00:00
|
|
|
# Contributor(s):
|
|
|
|
# Michel Buijsman <michel@rubberchicken.nl> (Original Author)
|
|
|
|
# Peter Annema <jag@tty.nl>
|
2001-09-27 17:54:10 +00:00
|
|
|
# Chris Seawood <seawood@netscape.com>
|
2004-04-25 21:07:34 +00:00
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
2001-09-12 18:06:07 +00:00
|
|
|
|
|
|
|
# Usage (Linux only for now):
|
|
|
|
#
|
|
|
|
# Do your normal Mozilla build, preferably a clobber one since
|
|
|
|
# that tends to give you more accurate .deps/*.pp files.
|
|
|
|
#
|
|
|
|
# cd objdir
|
|
|
|
# requires-cleanup.pl > req.diff
|
|
|
|
#
|
|
|
|
# The objdir is the directory where you ran |make| to build Mozilla
|
|
|
|
#
|
|
|
|
use strict;
|
2001-09-27 17:54:10 +00:00
|
|
|
use IO::Handle;
|
2001-09-12 18:06:07 +00:00
|
|
|
|
2001-09-27 17:54:10 +00:00
|
|
|
my @files = rfind(".", "\\.pp\$");
|
2001-09-12 18:06:07 +00:00
|
|
|
|
|
|
|
my $curdir = "";
|
|
|
|
my %req;
|
|
|
|
foreach my $file ( @files ) {
|
|
|
|
$file =~ m#^(.*?)/\.deps#;
|
|
|
|
if ( $curdir ne $1 ) {
|
|
|
|
domakefile(\%req,$curdir) if $curdir;
|
|
|
|
undef %req;
|
|
|
|
$curdir = $1;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Find and store all dist/include/<module>
|
|
|
|
my $content;
|
|
|
|
open FILE, "<$file" or die "can't open file: $!";
|
|
|
|
$content .= $_ while ( <FILE> );
|
|
|
|
close FILE;
|
|
|
|
$content =~ s/\s+/\n/g;
|
|
|
|
foreach my $line ( split /\n/, $content ) {
|
|
|
|
$req{$2} = 1 if ( $line =~ m#(../)*dist/include/(.*)/.*?.h# );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
domakefile(\%req,$curdir);
|
|
|
|
|
|
|
|
sub domakefile {
|
|
|
|
my $req = shift;
|
|
|
|
my $dir = shift;
|
|
|
|
|
|
|
|
# find the Makefile.in by scanning Makefile for the srcdir
|
|
|
|
my $srcdir;
|
2001-09-18 16:08:37 +00:00
|
|
|
open MAKE, "<$dir/Makefile" or die "Couldn't find file 'Makefile' in $dir";
|
2001-09-12 18:06:07 +00:00
|
|
|
while ( <MAKE> ) {
|
2002-03-16 15:32:18 +00:00
|
|
|
if ( m#^\s*srcdir\s*=\s*(\S+)\s*# ) {
|
2001-09-12 18:06:07 +00:00
|
|
|
$srcdir = $1;
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close MAKE;
|
|
|
|
|
2001-09-14 18:45:30 +00:00
|
|
|
$srcdir or die "No srcdir found in file $dir/Makefile";
|
2001-09-12 18:06:07 +00:00
|
|
|
|
2002-04-16 22:51:58 +00:00
|
|
|
open MAKE, "<$curdir/$srcdir/Makefile.in" or die "Couldn't find file 'Makefile.in' in $curdir/$srcdir";
|
2001-09-12 18:06:07 +00:00
|
|
|
|
|
|
|
my @lastLines; # buffer to store last three lines in (to emulate diff -B3)
|
|
|
|
my $i;
|
|
|
|
my $j = 3;
|
|
|
|
my $lastLine = "";
|
2001-09-18 16:08:37 +00:00
|
|
|
my $modified = 0;
|
2001-09-12 18:06:07 +00:00
|
|
|
my @requiresLines = (); # array to contain REQUIRES line(s) we're removing
|
|
|
|
while ( <MAKE> ) {
|
|
|
|
$lastLine = $lastLine.$_;
|
|
|
|
if ( $lastLine =~ m#^REQUIRES\s*=\s*.*\\$# ) {
|
|
|
|
# The REQUIRES line ended with a \ which means it's continued on the next line
|
|
|
|
$requiresLines[$#requiresLines+1] = $_;
|
|
|
|
$lastLine =~ s/\\$//;
|
|
|
|
chomp($lastLine);
|
|
|
|
}
|
2003-07-09 19:31:55 +00:00
|
|
|
elsif ( $lastLine =~ m#^(REQUIRES\s*=\s*)(.*)$# ) {
|
2001-09-12 18:06:07 +00:00
|
|
|
$requiresLines[$#requiresLines+1] = $_;
|
|
|
|
$lastLine = "";
|
|
|
|
my $requires = $1;
|
|
|
|
my $modules = $2;
|
|
|
|
my @reqs = split /\s+/, $modules;
|
|
|
|
my $line = "";
|
2001-09-18 16:08:37 +00:00
|
|
|
|
|
|
|
if ( $reqs[$#reqs] ne '$(NULL)' ) {
|
|
|
|
$reqs[$#reqs + 1] = '$(NULL)';
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( my $index = 0; $index < $#reqs; $index++ ) {
|
|
|
|
my $item = $reqs[$index];
|
|
|
|
if ( $item =~ m#^\$\(.*\)$# ) { # always copy "$(XXX)"
|
|
|
|
# keep it
|
|
|
|
}
|
|
|
|
elsif ( $req->{$item} ) { # copy if the module was referenced in .deps
|
|
|
|
# keep it
|
|
|
|
delete($req{$item}); # this filters duplicate entries
|
2001-09-12 18:06:07 +00:00
|
|
|
}
|
2001-09-18 16:08:37 +00:00
|
|
|
else {
|
|
|
|
splice(@reqs, $index, 1); # if it's not in .deps, don't write it out
|
2003-07-09 19:31:55 +00:00
|
|
|
$index--; # adjust index after splicing
|
2001-09-18 16:08:37 +00:00
|
|
|
$modified = 1;
|
2001-09-12 18:06:07 +00:00
|
|
|
}
|
|
|
|
}
|
2001-09-18 16:08:37 +00:00
|
|
|
|
|
|
|
if ( $modified == 0 ) {
|
2001-09-12 18:06:07 +00:00
|
|
|
last;
|
|
|
|
}
|
|
|
|
|
2001-09-18 16:08:37 +00:00
|
|
|
foreach my $index ( 0 .. $#reqs ) {
|
|
|
|
if ( $index == 0 ) {
|
|
|
|
$reqs[$index] = "REQUIRES\t= ".$reqs[$index];
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$reqs[$index] = "\t\t ".$reqs[$index];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $index < $#reqs ) {
|
|
|
|
$reqs[$index] = $reqs[$index]." \\\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$reqs[$index] = $reqs[$index]."\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-12 18:06:07 +00:00
|
|
|
# And here's the start of making it look like a cvs diff -u
|
|
|
|
# I chose this approach because it allows a final manual editing pass over
|
|
|
|
# the generated diff before actually modifying the Makefile.ins. We may want
|
|
|
|
# to replace this at some point with direct editing.
|
2001-09-18 16:08:37 +00:00
|
|
|
# Instead of replicating the diff algorithm, this code just removes all of
|
|
|
|
# the old REQUIRES and emits the new REQUIRES, use cvs diff to see the
|
|
|
|
# actual changes.
|
|
|
|
|
2001-09-12 18:06:07 +00:00
|
|
|
print "Index: $dir/Makefile.in\n";
|
|
|
|
print "===================================================================\n";
|
|
|
|
print "--- $dir/Makefile.in\t2001/01/01 00:00:00\n";
|
|
|
|
print "+++ $dir/Makefile.in\t2001/01/01 00:00:00\n";
|
2001-09-18 16:08:37 +00:00
|
|
|
print "@@ -".($i-2).",".(7+$#requiresLines)." +".($i-2).",".(7+$#reqs)." @@\n";
|
2001-09-12 18:06:07 +00:00
|
|
|
|
|
|
|
while ( $j ) {
|
|
|
|
print " ".$lastLines[($i - $j--) % 3];
|
|
|
|
}
|
|
|
|
foreach my $i ( @requiresLines ) {
|
|
|
|
print "-".$i;
|
|
|
|
}
|
2001-09-18 16:08:37 +00:00
|
|
|
foreach my $i ( @reqs ) {
|
|
|
|
print "+".$i;
|
|
|
|
}
|
2001-09-12 18:06:07 +00:00
|
|
|
|
|
|
|
while ( <MAKE> ) {
|
|
|
|
if ( $j++ == 3 ) {
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
print " ";
|
|
|
|
print $_;
|
|
|
|
}
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if ( $lastLine =~ m#^\s*MODULE\s*=\s*(.*)\s*$# ) {
|
|
|
|
# If it's on the MODULE line, no need for it on the REQUIRES line.
|
|
|
|
# XXX if a MODULE line appears after a REQUIRES line we'll not reach this
|
|
|
|
delete($req->{$1});
|
|
|
|
}
|
|
|
|
$lastLines[$i++ % 3] = $_;
|
|
|
|
$lastLine = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close MAKE;
|
|
|
|
}
|
2001-09-27 17:54:10 +00:00
|
|
|
exit(0);
|
|
|
|
|
|
|
|
|
|
|
|
sub rfind($,$) {
|
|
|
|
my ($dirname, $regexp) = @_;
|
|
|
|
my (@dirlist, @filelist, @sublist, $file, $dir);
|
|
|
|
|
|
|
|
# Create lists of current files and subdirectories
|
|
|
|
my $SDIR = new IO::Handle;
|
|
|
|
opendir($SDIR, "$dirname") || die "opendir($dirname): $!\n";
|
|
|
|
while ($file = readdir($SDIR)) {
|
|
|
|
next if ($file eq "." || $file eq "..");
|
|
|
|
if ( -d "$dirname/$file" ) {
|
|
|
|
push @dirlist, "$file";
|
|
|
|
} else {
|
|
|
|
push @filelist, "$dirname/$file" if ($file =~ m/$regexp/);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir($SDIR);
|
|
|
|
|
|
|
|
# Call rfind recursively
|
|
|
|
foreach $dir (@dirlist) {
|
|
|
|
#print "rfind(\"$dirname/$dir\") \n";
|
|
|
|
@sublist = rfind("$dirname/$dir", $regexp);
|
|
|
|
foreach $file (@sublist) {
|
|
|
|
push @filelist, $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return @filelist;
|
|
|
|
|
|
|
|
}
|