home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _bb0fe8c177be25af2a049ea0e446cb8d < prev    next >
Text File  |  2000-03-24  |  24KB  |  861 lines

  1. @rem = '--*-Perl-*--
  2. @echo off
  3. if "%OS%" == "Windows_NT" goto WinNT
  4. perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
  5. goto endofperl
  6. :WinNT
  7. perl -x -S "%0" %*
  8. if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
  9. if %errorlevel% == 9009 echo You do not have Perl in your PATH.
  10. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
  11. goto endofperl
  12. @rem ';
  13. #!perl
  14. #line 15
  15.     eval 'exec D:\p4-view\main\Apps\Gecko\MSI\data\ActivePerl\Perl\bin\perl.exe -S $0 ${1+"$@"}'
  16.       if $running_under_some_shell;
  17. my $perlpath = "D:\p4-view\main\Apps\Gecko\MSI\data\ActivePerl\Perl\bin\perl.exe";
  18. use strict;
  19. use vars qw/$statdone/;
  20. my $startperl = "#! $perlpath -w";
  21.  
  22. #
  23. # Modified September 26, 1993 to provide proper handling of years after 1999
  24. #   Tom Link <tml+@pitt.edu>
  25. #   University of Pittsburgh
  26. #
  27. # Modified April 7, 1998 with nasty hacks to implement the troublesome -follow
  28. #  Billy Constantine <wdconsta@cs.adelaide.edu.au> <billy@smug.adelaide.edu.au>
  29. #  University of Adelaide, Adelaide, South Australia
  30. #
  31. # Modified 1999-06-10, 1999-07-07 to migrate to cleaner perl5 usage
  32. #   Ken Pizzini <ken@halcyon.com>
  33. #
  34. # Modified 2000-01-28 to use the 'follow' option of File::Find
  35.  
  36. my @roots = ();
  37. while ($ARGV[0] =~ /^[^-!(]/) {
  38.     push(@roots, shift);
  39. }
  40. @roots = ('.') unless @roots;
  41. for (@roots) { $_ = "e($_) }
  42. my $roots = join(', ', @roots);
  43.  
  44. my $find = "find";
  45. my $indent_depth = 1;
  46. my $stat = 'lstat';
  47. my $decl = '';
  48. my $flushall = '';
  49. my $initfile = '';
  50. my $initnewer = '';
  51. my $out = '';
  52. my %init = ();
  53. my ($follow_in_effect,$Skip_And) = (0,0);
  54.  
  55. while (@ARGV) {
  56.     $_ = shift;
  57.     s/^-// || /^[()!]/ || die "Unrecognized switch: $_\n";
  58.     if ($_ eq '(') {
  59.         $out .= &tab . "(\n";
  60.         $indent_depth++;
  61.         next;
  62.     } elsif ($_ eq ')') {
  63.         --$indent_depth;
  64.         $out .= &tab . ")";
  65.     } elsif ($_ eq 'follow') {
  66.         $follow_in_effect= 1;
  67.         $stat = 'stat';
  68.         $Skip_And= 1;
  69.     } elsif ($_ eq '!') {
  70.         $out .= &tab . "!";
  71.         next;
  72.     } elsif ($_ eq 'name') {
  73.         $out .= &tab . '/' . &fileglob_to_re(shift) . "/s";
  74.     } elsif ($_ eq 'perm') {
  75.         my $onum = shift;
  76.         $onum =~ /^-?[0-7]+$/
  77.             || die "Malformed -perm argument: $onum\n";
  78.         $out .= &tab;
  79.         if ($onum =~ s/^-//) {
  80.             $onum = sprintf("0%o", oct($onum) & 07777);
  81.             $out .= "((\$mode & $onum) == $onum)";
  82.         } else {
  83.             $onum =~ s/^0*/0/;
  84.             $out .= "((\$mode & 0777) == $onum)";
  85.         }
  86.     } elsif ($_ eq 'type') {
  87.         (my $filetest = shift) =~ tr/s/S/;
  88.         $out .= &tab . "-$filetest _";
  89.     } elsif ($_ eq 'print') {
  90.         $out .= &tab . 'print("$name\n")';
  91.     } elsif ($_ eq 'print0') {
  92.         $out .= &tab . 'print("$name\0")';
  93.     } elsif ($_ eq 'fstype') {
  94.         my $type = shift;
  95.         $out .= &tab;
  96.         if ($type eq 'nfs') {
  97.             $out .= '($dev < 0)';
  98.         } else {
  99.             $out .= '($dev >= 0)'; #XXX
  100.         }
  101.     } elsif ($_ eq 'user') {
  102.         my $uname = shift;
  103.         $out .= &tab . "(\$uid == \$uid{'$uname'})";
  104.         $init{user} = 1;
  105.     } elsif ($_ eq 'group') {
  106.         my $gname = shift;
  107.         $out .= &tab . "(\$gid == \$gid{'$gname'})";
  108.         $init{group} = 1;
  109.     } elsif ($_ eq 'nouser') {
  110.         $out .= &tab . '!exists $uid{$uid}';
  111.         $init{user} = 1;
  112.     } elsif ($_ eq 'nogroup') {
  113.         $out .= &tab . '!exists $gid{$gid}';
  114.         $init{group} = 1;
  115.     } elsif ($_ eq 'links') {
  116.         $out .= &tab . &n('$nlink', shift);
  117.     } elsif ($_ eq 'inum') {
  118.         $out .= &tab . &n('$ino', shift);
  119.     } elsif ($_ eq 'size') {
  120.         $_ = shift;
  121.         my $n = 'int(((-s _) + 511) / 512)';
  122.         if (s/c\z//) {
  123.             $n = 'int(-s _)';
  124.         } elsif (s/k\z//) {
  125.             $n = 'int(((-s _) + 1023) / 1024)';
  126.         }
  127.         $out .= &tab . &n($n, $_);
  128.     } elsif ($_ eq 'atime') {
  129.         $out .= &tab . &n('int(-A _)', shift);
  130.     } elsif ($_ eq 'mtime') {
  131.         $out .= &tab . &n('int(-M _)', shift);
  132.     } elsif ($_ eq 'ctime') {
  133.         $out .= &tab . &n('int(-C _)', shift);
  134.     } elsif ($_ eq 'exec') {
  135.         my @cmd = ();
  136.         while (@ARGV && $ARGV[0] ne ';')
  137.             { push(@cmd, shift) }
  138.         shift;
  139.         $out .= &tab;
  140.         if ($cmd[0] =~m#^(?:(?:/usr)?/bin/)?rm$#
  141.                 && $cmd[$#cmd] eq '{}'
  142.                 && (@cmd == 2 || (@cmd == 3 && $cmd[1] eq '-f'))) {
  143.             if (@cmd == 2) {
  144.                 $out .= '(unlink($_) || warn "$name: $!\n")';
  145.             } elsif (!@ARGV) {
  146.                 $out .= 'unlink($_)';
  147.             } else {
  148.                 $out .= '(unlink($_) || 1)';
  149.             }
  150.         } else {
  151.             for (@cmd)
  152.                 { s/'/\\'/g }
  153.             { local $" = "','"; $out .= "&doexec(0, '@cmd')"; }
  154.             $init{doexec} = 1;
  155.         }
  156.     } elsif ($_ eq 'ok') {
  157.         my @cmd = ();
  158.         while (@ARGV && $ARGV[0] ne ';')
  159.             { push(@cmd, shift) }
  160.         shift;
  161.         $out .= &tab;
  162.         for (@cmd)
  163.             { s/'/\\'/g }
  164.         { local $" = "','"; $out .= "&doexec(0, '@cmd')"; }
  165.         $init{doexec} = 1;
  166.     } elsif ($_ eq 'prune') {
  167.         $out .= &tab . '($File::Find::prune = 1)';
  168.     } elsif ($_ eq 'xdev') {
  169.         $out .= &tab . '!($File::Find::prune |= ($dev != $File::Find::topdev))'
  170. ;
  171.     } elsif ($_ eq 'newer') {
  172.         my $file = shift;
  173.         my $newername = 'AGE_OF' . $file;
  174.         $newername =~ s/\W/_/g;
  175.         $newername = '$' . $newername;
  176.         $out .= &tab . "(-M _ < $newername)";
  177.         $initnewer .= "my $newername = -M " . "e($file) . ";\n";
  178.     } elsif ($_ eq 'eval') {
  179.         my $prog = shift;
  180.         $prog =~ s/'/\\'/g;
  181.         $out .= &tab . "eval {$prog}";
  182.     } elsif ($_ eq 'depth') {
  183.         $find = 'finddepth';
  184.         next;
  185.     } elsif ($_ eq 'ls') {
  186.         $out .= &tab . "&ls";
  187.         $init{ls} = 1;
  188.     } elsif ($_ eq 'tar') {
  189.         die "-tar must have a filename argument\n" unless @ARGV;
  190.         my $file = shift;
  191.         my $fh = 'FH' . $file;
  192.         $fh =~ s/\W/_/g;
  193.         $out .= &tab . "&tar(*$fh, \$name)";
  194.         $flushall .= "&tflushall;\n";
  195.         $initfile .= "open($fh, " . "e('> ' . $file) .
  196.                      qq{) || die "Can't open $fh: \$!\\n";\n};
  197.         $init{tar} = 1;
  198.     } elsif (/^(n?)cpio\z/) {
  199.         die "-$_ must have a filename argument\n" unless @ARGV;
  200.         my $file = shift;
  201.         my $fh = 'FH' . $file;
  202.         $fh =~ s/\W/_/g;
  203.         $out .= &tab . "&cpio(*$fh, \$name, '$1')";
  204.         $find = 'finddepth';
  205.         $flushall .= "&cflushall;\n";
  206.         $initfile .= "open($fh, " . "e('> ' . $file) .
  207.                      qq{) || die "Can't open $fh: \$!\\n";\n};
  208.         $init{cpio} = 1;
  209.     } else {
  210.         die "Unrecognized switch: -$_\n";
  211.     }
  212.  
  213.     if (@ARGV) {
  214.         if ($ARGV[0] eq '-o') {
  215.             { local($statdone) = 1; $out .= "\n" . &tab . "||\n"; }
  216.             $statdone = 0 if $indent_depth == 1 && exists $init{delayedstat};
  217.             $init{saw_or} = 1;
  218.             shift;
  219.         } else {
  220.             $out .= " &&" unless $Skip_And || $ARGV[0] eq ')';
  221.             $out .= "\n";
  222.             shift if $ARGV[0] eq '-a';
  223.         }
  224.     }
  225. }
  226.  
  227.  
  228. print <<"END";
  229. $startperl
  230.     eval 'exec $perlpath -S \$0 \${1+"\$@"}'
  231.         if 0; #\$running_under_some_shell
  232.  
  233. use strict;
  234. use File::Find ();
  235.  
  236. # Set the variable \$File::Find::dont_use_nlink if you're using AFS,
  237. # since AFS cheats.
  238.  
  239. # for the convenience of &wanted calls, including -eval statements:
  240. use vars qw/*name *dir *prune/;
  241. *name   = *File::Find::name;
  242. *dir    = *File::Find::dir;
  243. *prune  = *File::Find::prune;
  244.  
  245. END
  246.  
  247.  
  248. if (exists $init{ls}) {
  249.     print <<'END';
  250. my @rwx = qw(--- --x -w- -wx r-- r-x rw- rwx);
  251. my @moname = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);
  252.  
  253. END
  254. }
  255.  
  256. if (exists $init{user} || exists $init{ls} || exists $init{tar}) {
  257.     print "my (%uid, %user);\n";
  258.     print "while (my (\$name, \$pw, \$uid) = getpwent) {\n";
  259.     print '    $uid{$name} = $uid{$uid} = $uid;', "\n"
  260.         if exists $init{user};
  261.     print '    $user{$uid} = $name unless exists $user{$uid};', "\n"
  262.         if exists $init{ls} || exists $init{tar};
  263.     print "}\n\n";
  264. }
  265.  
  266. if (exists $init{group} || exists $init{ls} || exists $init{tar}) {
  267.     print "my (%gid, %group);\n";
  268.     print "while (my (\$name, \$pw, \$gid) = getgrent) {\n";
  269.     print '    $gid{$name} = $gid{$gid} = $gid;', "\n"
  270.         if exists $init{group};
  271.     print '    $group{$gid} = $name unless exists $group{$gid};', "\n"
  272.         if exists $init{ls} || exists $init{tar};
  273.     print "}\n\n";
  274. }
  275.  
  276. print $initnewer, "\n" if $initnewer ne '';
  277. print $initfile, "\n" if $initfile ne '';
  278. $flushall .= "exit;\n";
  279. if (exists $init{declarestat}) {
  280.     $out = <<'END' . $out;
  281.     my ($dev,$ino,$mode,$nlink,$uid,$gid);
  282.  
  283. END
  284. }
  285.  
  286. if ( $follow_in_effect ) {
  287. $out =~ s/lstat\(\$_\)/lstat(_)/;
  288. print <<"END";
  289. $decl
  290. # Traverse desired filesystems
  291. File::Find::$find( {wanted => \\&wanted, follow => 1}, $roots);
  292. $flushall
  293.  
  294. sub wanted {
  295. $out;
  296. }
  297.  
  298. END
  299. } else {
  300. print <<"END";
  301. $decl
  302. # Traverse desired filesystems
  303. File::Find::$find({wanted => \\&wanted}, $roots);
  304. $flushall
  305.  
  306. sub wanted {
  307. $out;
  308. }
  309.  
  310. END
  311. }
  312.  
  313. if (exists $init{doexec}) {
  314.     print <<'END';
  315.  
  316. BEGIN {
  317.     require Cwd;
  318.     my $cwd = Cwd::cwd();
  319. }
  320.  
  321. sub doexec {
  322.     my $ok = shift;
  323.     for my $word (@_)
  324.         { $word =~ s#{}#$name#g }
  325.     if ($ok) {
  326.         my $old = select(STDOUT);
  327.         $| = 1;
  328.         print "@_";
  329.         select($old);
  330.         return 0 unless <STDIN> =~ /^y/;
  331.     }
  332.     chdir $cwd; #sigh
  333.     system @_;
  334.     chdir $File::Find::dir;
  335.     return !$?;
  336. }
  337.  
  338. END
  339. }
  340.  
  341. if (exists $init{ls}) {
  342.     print <<'INTRO', <<"SUB", <<'END';
  343.  
  344. sub sizemm {
  345.     my $rdev = shift;
  346.     sprintf("%3d, %3d", ($rdev >> 8) & 0xff, $rdev & 0xff);
  347. }
  348.  
  349. sub ls {
  350.     my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
  351. INTRO
  352.         \$atime,\$mtime,\$ctime,\$blksize,\$blocks) = $stat(_);
  353. SUB
  354.     my $pname = $name;
  355.  
  356.     $blocks
  357.         or $blocks = int(($size + 1023) / 1024);
  358.  
  359.     my $perms = $rwx[$mode & 7];
  360.     $mode >>= 3;
  361.     $perms = $rwx[$mode & 7] . $perms;
  362.     $mode >>= 3;
  363.     $perms = $rwx[$mode & 7] . $perms;
  364.     substr($perms, 2, 1) =~ tr/-x/Ss/ if -u _;
  365.     substr($perms, 5, 1) =~ tr/-x/Ss/ if -g _;
  366.     substr($perms, 8, 1) =~ tr/-x/Tt/ if -k _;
  367.     if    (-f _) { $perms = '-' . $perms; }
  368.     elsif (-d _) { $perms = 'd' . $perms; }
  369.     elsif (-l _) { $perms = 'l' . $perms; $pname .= ' -> ' . readlink($_); }
  370.     elsif (-c _) { $perms = 'c' . $perms; $size = sizemm($rdev); }
  371.     elsif (-b _) { $perms = 'b' . $perms; $size = sizemm($rdev); }
  372.     elsif (-p _) { $perms = 'p' . $perms; }
  373.     elsif (-S _) { $perms = 's' . $perms; }
  374.     else         { $perms = '?' . $perms; }
  375.  
  376.     my $user = $user{$uid} || $uid;
  377.     my $group = $group{$gid} || $gid;
  378.  
  379.     my ($sec,$min,$hour,$mday,$mon,$timeyear) = localtime($mtime);
  380.     if (-M _ > 365.25 / 2) {
  381.         $timeyear += 1900;
  382.     } else {
  383.         $timeyear = sprintf("%02d:%02d", $hour, $min);
  384.     }
  385.  
  386.     printf "%5lu %4ld %-10s %3d %-8s %-8s %8s %s %2d %5s %s\n",
  387.             $ino,
  388.                  $blocks,
  389.                       $perms,
  390.                             $nlink,
  391.                                 $user,
  392.                                      $group,
  393.                                           $size,
  394.                                               $moname[$mon],
  395.                                                  $mday,
  396.                                                      $timeyear,
  397.                                                          $pname;
  398.     1;
  399. }
  400.  
  401. END
  402. }
  403.  
  404.  
  405. if (exists $init{cpio} || exists $init{tar}) {
  406. print <<'END';
  407.  
  408. my %blocks = ();
  409.  
  410. sub flush {
  411.     my ($fh, $varref, $blksz) = @_;
  412.  
  413.     while (length($$varref) >= $blksz) {
  414.         no strict qw/refs/;
  415.         syswrite($fh, $$varref, $blksz);
  416.         substr($$varref, 0, $blksz) = '';
  417.         ++$blocks{$fh};
  418.     }
  419. }
  420.  
  421. END
  422. }
  423.  
  424.  
  425. if (exists $init{cpio}) {
  426.     print <<'INTRO', <<"SUB", <<'END';
  427.  
  428. my %cpout = ();
  429. my %nc = ();
  430.  
  431. sub cpio {
  432.     my ($fh, $fname, $nc) = @_;
  433.     my $text = '';
  434.     my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
  435.         $atime,$mtime,$ctime,$blksize,$blocks);
  436.     local (*IN);
  437.  
  438.     if ( ! defined $fname ) {
  439.         $fname = 'TRAILER!!!';
  440.         ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
  441.           $atime,$mtime,$ctime,$blksize,$blocks) = (0) x 13;
  442.     } else {
  443.         ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
  444. INTRO
  445.           \$atime,\$mtime,\$ctime,\$blksize,\$blocks) = $stat(_);
  446. SUB
  447.         if (-f _) {
  448.             open(IN, "./$_\0") || do {
  449.                 warn "Couldn't open $fname: $!\n";
  450.                 return;
  451.             }
  452.         } else {
  453.             $text = readlink($_);
  454.             $size = 0 unless defined $text;
  455.         }
  456.     }
  457.  
  458.     $fname =~ s#^\./##;
  459.     $nc{$fh} = $nc;
  460.     if ($nc eq 'n') {
  461.         $cpout{$fh} .=
  462.           sprintf("%06o%06o%06o%06o%06o%06o%06o%06o%011lo%06o%011lo%s\0",
  463.             070707,
  464.             $dev & 0777777,
  465.             $ino & 0777777,
  466.             $mode & 0777777,
  467.             $uid & 0777777,
  468.             $gid & 0777777,
  469.             $nlink & 0777777,
  470.             $rdev & 0177777,
  471.             $mtime,
  472.             length($fname)+1,
  473.             $size,
  474.             $fname);
  475.     } else {
  476.         $cpout{$fh} .= "\0" if length($cpout{$fh}) & 1;
  477.         $cpout{$fh} .= pack("SSSSSSSSLSLa*",
  478.             070707, $dev, $ino, $mode, $uid, $gid, $nlink, $rdev, $mtime,
  479.             length($fname)+1, $size,
  480.             $fname . (length($fname) & 1 ? "\0" : "\0\0"));
  481.     }
  482.  
  483.     if ($text ne '') {
  484.         $cpout{$fh} .= $text;
  485.     } elsif ($size) {
  486.         my $l;
  487.         flush($fh, \$cpout{$fh}, 5120)
  488.             while ($l = length($cpout{$fh})) >= 5120;
  489.         while (sysread(IN, $cpout{$fh}, 5120 - $l, $l)) {
  490.             flush($fh, \$cpout{$fh}, 5120);
  491.             $l = length($cpout{$fh});
  492.         }
  493.         close IN;
  494.     }
  495. }
  496.  
  497. sub cflushall {
  498.     for my $fh (keys %cpout) {
  499.         &cpio($fh, undef, $nc{$fh});
  500.         $cpout{$fh} .= "0" x (5120 - length($cpout{$fh}));
  501.         flush($fh, \$cpout{$fh}, 5120);
  502.         print $blocks{$fh} * 10, " blocks\n";
  503.     }
  504. }
  505.  
  506. END
  507. }
  508.  
  509. if (exists $init{tar}) {
  510.     print <<'INTRO', <<"SUB", <<'END';
  511.  
  512. my %tarout = ();
  513. my %linkseen = ();
  514.  
  515. sub tar {
  516.     my ($fh, $fname) = @_;
  517.     my $prefix = '';
  518.     my $typeflag = '0';
  519.     my $linkname;
  520.     my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
  521. INTRO
  522.         \$atime,\$mtime,\$ctime,\$blksize,\$blocks) = $stat(_);
  523. SUB
  524.     local (*IN);
  525.  
  526.     if ($nlink > 1) {
  527.         if ($linkname = $linkseen{$fh, $dev, $ino}) {
  528.             if (length($linkname) > 100) {
  529.                 warn "$0: omitting file with linkname ",
  530.                      "too long for tar output: $linkname\n";
  531.                 return;
  532.             }
  533.             $typeflag = '1';
  534.             $size = 0;
  535.         } else {
  536.             $linkseen{$fh, $dev, $ino} = $fname;
  537.         }
  538.     }
  539.     if ($typeflag eq '0') {
  540.         if (-f _) {
  541.             open(IN, "./$_\0") || do {
  542.                 warn "Couldn't open $fname: $!\n";
  543.                 return;
  544.             }
  545.         } else {
  546.             $linkname = readlink($_);
  547.             if (defined $linkname) { $typeflag = '2' }
  548.             elsif (-c _) { $typeflag = '3' }
  549.             elsif (-b _) { $typeflag = '4' }
  550.             elsif (-d _) { $typeflag = '5' }
  551.             elsif (-p _) { $typeflag = '6' }
  552.         }
  553.     }
  554.  
  555.     if (length($fname) > 100) {
  556.         ($prefix, $fname) = ($fname =~ m#\A(.*?)/(.{,100})\Z(?!\n)#);
  557.         if (!defined($fname) || length($prefix) > 155) {
  558.             warn "$0: omitting file with name too long for tar output: ",
  559.                  $fname, "\n";
  560.             return;
  561.         }
  562.     }
  563.  
  564.     $size = 0 if $typeflag ne '0';
  565.     my $header = pack("a100a8a8a8a12a12a8a1a100a6a2a32a32a8a8a155",
  566.                         $fname,
  567.                         sprintf("%7o ", $mode &    0777),
  568.                         sprintf("%7o ", $uid  & 0777777),
  569.                         sprintf("%7o ", $gid  & 0777777),
  570.                         sprintf("%11o ", $size),
  571.                         sprintf("%11o ", $mtime),
  572.                         ' 'x8,
  573.                         $typeflag,
  574.                         defined $linkname ? $linkname : '',
  575.                         "ustar\0",
  576.                         "00",
  577.                         $user{$uid},
  578.                         $group{$gid},
  579.                         ($rdev >> 8) & 0xff,
  580.                         $rdev & 0xff,
  581.                         $prefix,
  582.                      );
  583.     substr($header, 148, 8) = sprintf("%7o ", unpack("%16C*", $header));
  584.     my $l = length($header) % 512;
  585.     $tarout{$fh} .= $header;
  586.     $tarout{$fh} .= "\0" x (512 - $l) if $l;
  587.  
  588.     if ($size) {
  589.         flush($fh, \$tarout{$fh}, 10240)
  590.             while ($l = length($tarout{$fh})) >= 10240;
  591.         while (sysread(IN, $tarout{$fh}, 10240 - $l, $l)) {
  592.             my $slop = length($tarout{$fh}) % 512;
  593.             $tarout{$fh} .= "\0" x (512 - $slop) if $slop;
  594.             flush($fh, \$tarout{$fh}, 10240);
  595.             $l = length($tarout{$fh});
  596.         }
  597.         close IN;
  598.     }
  599. }
  600.  
  601. sub tflushall {
  602.     my $len;
  603.     for my $fh (keys %tarout) {
  604.         $len = 10240 - length($tarout{$fh});
  605.         $len += 10240 if $len < 1024;
  606.         $tarout{$fh} .= "\0" x $len;
  607.         flush($fh, \$tarout{$fh}, 10240);
  608.     }
  609. }
  610.  
  611. END
  612. }
  613.  
  614. exit;
  615.  
  616. ############################################################################
  617.  
  618. sub tab {
  619.     my $tabstring;
  620.  
  621.     $tabstring = "\t" x ($indent_depth/2) . ' ' x ($indent_depth%2 * 4);
  622.     if (!$statdone) {
  623.         if ($_ =~ /^(?:name|print|prune|exec|ok|\(|\))/) {
  624.             $init{delayedstat} = 1;
  625.         } else {
  626.             my $statcall = '(($dev,$ino,$mode,$nlink,$uid,$gid) = '
  627.                          . $stat . '($_))';
  628.             if (exists $init{saw_or}) {
  629.                 $tabstring .= "(\$nlink || $statcall) &&\n" . $tabstring;
  630.             } else {
  631.                 $tabstring .= "$statcall &&\n" . $tabstring;
  632.             }
  633.             $statdone = 1;
  634.             $init{declarestat} = 1;
  635.         }
  636.     }
  637.     $tabstring =~ s/^\s+/ / if $out =~ /!$/;
  638.     $tabstring;
  639. }
  640.  
  641. sub fileglob_to_re {
  642.     my $x = shift;
  643.     $x =~ s#([./^\$()])#\\$1#g;
  644.     $x =~ s#([?*])#.$1#g;
  645.     "^$x\\z";
  646. }
  647.  
  648. sub n {
  649.     my ($pre, $n) = @_;
  650.     $n =~ s/^-/< / || $n =~ s/^\+/> / || $n =~ s/^/== /;
  651.     $n =~ s/ 0*(\d)/ $1/;
  652.     "($pre $n)";
  653. }
  654.  
  655. sub quote {
  656.     my $string = shift;
  657.     $string =~ s/'/\\'/g;
  658.     "'$string'";
  659. }
  660.  
  661. __END__
  662.  
  663. =head1 NAME
  664.  
  665. find2perl - translate find command lines to Perl code
  666.  
  667. =head1 SYNOPSIS
  668.  
  669.     find2perl [paths] [predicates] | perl
  670.  
  671. =head1 DESCRIPTION
  672.  
  673. find2perl is a little translator to convert find command lines to
  674. equivalent Perl code.  The resulting code is typically faster than
  675. running find itself.
  676.  
  677. "paths" are a set of paths where find2perl will start its searches and
  678. "predicates" are taken from the following list.
  679.  
  680. =over 4
  681.  
  682. =item C<! PREDICATE>
  683.  
  684. Negate the sense of the following predicate.  The C<!> must be passed as
  685. a distinct argument, so it may need to be surrounded by whitespace and/or
  686. quoted from interpretation by the shell using a backslash (just as with
  687. using C<find(1)>).
  688.  
  689. =item C<( PREDICATES )>
  690.  
  691. Group the given PREDICATES.  The parentheses must be passed as distinct
  692. arguments, so they may need to be surrounded by whitespace and/or
  693. quoted from interpretation by the shell using a backslash (just as with
  694. using C<find(1)>).
  695.  
  696. =item C<PREDICATE1 PREDICATE2>
  697.  
  698. True if _both_ PREDICATE1 and PREDICATE2 are true; PREDICATE2 is not
  699. evaluated if PREDICATE1 is false.
  700.  
  701. =item C<PREDICATE1 -o PREDICATE2>
  702.  
  703. True if either one of PREDICATE1 or PREDICATE2 is true; PREDICATE2 is
  704. not evaluated if PREDICATE1 is true.
  705.  
  706. =item C<-follow>
  707.  
  708. Follow (dereference) symlinks.  The checking of file attributes depends
  709. on the position of the C<-follow> option. If it precedes the file
  710. check option, an C<stat> is done which means the file check applies to the
  711. file the symbolic link is pointing to. If C<-follow> option follows the
  712. file check option, this now applies to the symbolic link itself, i.e.
  713. an C<lstat> is done.
  714.  
  715. =item C<-depth>
  716.  
  717. Change directory traversal algorithm from breadth-first to depth-first.
  718.  
  719. =item C<-prune>
  720.  
  721. Do not descend into the directory currently matched.
  722.  
  723. =item C<-xdev>
  724.  
  725. Do not traverse mount points (prunes search at mount-point directories).
  726.  
  727. =item C<-name GLOB>
  728.  
  729. File name matches specified GLOB wildcard pattern.  GLOB may need to be
  730. quoted to avoid interpretation by the shell (just as with using
  731. C<find(1)>).
  732.  
  733. =item C<-perm PERM>
  734.  
  735. Low-order 9 bits of permission match octal value PERM.
  736.  
  737. =item C<-perm -PERM>
  738.  
  739. The bits specified in PERM are all set in file's permissions.
  740.  
  741. =item C<-type X>
  742.  
  743. The file's type matches perl's C<-X> operator.
  744.  
  745. =item C<-fstype TYPE>
  746.  
  747. Filesystem of current path is of type TYPE (only NFS/non-NFS distinction
  748. is implemented).
  749.  
  750. =item C<-user USER>
  751.  
  752. True if USER is owner of file.
  753.  
  754. =item C<-group GROUP>
  755.  
  756. True if file's group is GROUP.
  757.  
  758. =item C<-nouser>
  759.  
  760. True if file's owner is not in password database.
  761.  
  762. =item C<-nogroup>
  763.  
  764. True if file's group is not in group database.
  765.  
  766. =item C<-inum INUM>
  767.  
  768. True file's inode number is INUM.
  769.  
  770. =item C<-links N>
  771.  
  772. True if (hard) link count of file matches N (see below).
  773.  
  774. =item C<-size N>
  775.  
  776. True if file's size matches N (see below) N is normally counted in
  777. 512-byte blocks, but a suffix of "c" specifies that size should be
  778. counted in characters (bytes) and a suffix of "k" specifes that
  779. size should be counted in 1024-byte blocks.
  780.  
  781. =item C<-atime N>
  782.  
  783. True if last-access time of file matches N (measured in days) (see
  784. below).
  785.  
  786. =item C<-ctime N>
  787.  
  788. True if last-changed time of file's inode matches N (measured in days,
  789. see below).
  790.  
  791. =item C<-mtime N>
  792.  
  793. True if last-modified time of file matches N (measured in days, see below).
  794.  
  795. =item C<-newer FILE>
  796.  
  797. True if last-modified time of file matches N.
  798.  
  799. =item C<-print>
  800.  
  801. Print out path of file (always true).
  802.  
  803. =item C<-print0>
  804.  
  805. Like -print, but terminates with \0 instead of \n.
  806.  
  807. =item C<-exec OPTIONS ;>
  808.  
  809. exec() the arguments in OPTIONS in a subprocess; any occurence of {} in
  810. OPTIONS will first be substituted with the path of the current
  811. file.  Note that the command "rm" has been special-cased to use perl's
  812. unlink() function instead (as an optimization).  The C<;> must be passed as
  813. a distinct argument, so it may need to be surrounded by whitespace and/or
  814. quoted from interpretation by the shell using a backslash (just as with
  815. using C<find(1)>).
  816.  
  817. =item C<-ok OPTIONS ;>
  818.  
  819. Like -exec, but first prompts user; if user's response does not begin
  820. with a y, skip the exec.  The C<;> must be passed as
  821. a distinct argument, so it may need to be surrounded by whitespace and/or
  822. quoted from interpretation by the shell using a backslash (just as with
  823. using C<find(1)>).
  824.  
  825. =item C<-eval EXPR>
  826.  
  827. Has the perl script eval() the EXPR.  
  828.  
  829. =item C<-ls>
  830.  
  831. Simulates C<-exec ls -dils {} ;>
  832.  
  833. =item C<-tar FILE>
  834.  
  835. Adds current output to tar-format FILE.
  836.  
  837. =item C<-cpio FILE>
  838.  
  839. Adds current output to old-style cpio-format FILE.
  840.  
  841. =item C<-ncpio FILE>
  842.  
  843. Adds current output to "new"-style cpio-format FILE.
  844.  
  845. =back
  846.  
  847. Predicates which take a numeric argument N can come in three forms:
  848.  
  849.    * N is prefixed with a +: match values greater than N
  850.    * N is prefixed with a -: match values less than N
  851.    * N is not prefixed with either + or -: match only values equal to N
  852.  
  853. =head1 SEE ALSO
  854.  
  855. find
  856.  
  857. =cut
  858.  
  859. __END__
  860. :endofperl
  861.