123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- use Time::Local;
- if ( $#ARGV < 1 )
- {
- print "Usage: $0 prepare|postprocess dir [logfile]\n";
- exit 1;
- }
- sub errout {
- print $_[0] . "\n";
- exit 1;
- }
- if ($ARGV[0] eq "prepare")
- {
- my $dirname = $ARGV[1];
- mkdir $dirname || errout "$!";
- chdir $dirname;
-
-
-
- mkdir "asubdir" || errout "$!";
- chmod 0777, "asubdir";
- open(FILE, ">plainfile.txt") || errout "$!";
- binmode FILE;
- print FILE "Test file to support curl test suite\n";
- close(FILE);
-
-
- utime time, timegm(0,0,12,1,0,100), "plainfile.txt";
- chmod 0666, "plainfile.txt";
- open(FILE, ">rofile.txt") || errout "$!";
- binmode FILE;
- print FILE "Read-only test file to support curl test suite\n";
- close(FILE);
-
-
- utime time, timegm(0,0,12,31,11,100), "rofile.txt";
- chmod 0444, "rofile.txt";
- exit 0;
- }
- elsif ($ARGV[0] eq "postprocess")
- {
- my $dirname = $ARGV[1];
- my $logfile = $ARGV[2];
-
- unlink "$dirname/rofile.txt";
- unlink "$dirname/plainfile.txt";
- rmdir "$dirname/asubdir";
- rmdir $dirname || die "$!";
- if ($logfile) {
-
-
-
-
-
-
-
-
-
-
-
-
-
- my @canondir;
- open(IN, "<$logfile") || die "$!";
- while (<IN>) {
- /^(.)(..).(..).(..).\s*(\S+)\s+\S+\s+\S+\s+(\S+)\s+(\S+\s+\S+\s+\S+)(.*)$/;
- if ($1 eq "d") {
-
-
- push @canondir, "d????????? N U U N ??? N NN:NN$8\n";
- } elsif ($1 eq "-") {
-
-
- my $line = sprintf("%s%s?%s?%s?%5d U U %15d %s%s\n", $1,$2,$3,$4,$5,$6,$7,$8);
- push @canondir, $line;
- } else {
-
- push @canondir, $_;
- }
- }
- close(IN);
- @canondir = sort {substr($a,57) cmp substr($b,57)} @canondir;
- my $newfile = $logfile . ".new";
- open(OUT, ">$newfile") || die "$!";
- print OUT join('', @canondir);
- close(OUT);
- unlink $logfile;
- rename $newfile, $logfile;
- }
- exit 0;
- }
- print "Unsupported command $ARGV[0]\n";
- exit 1;
|