home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / unixtool.zip / TOOLS / lib / perl / finddep.pl < prev    next >
Perl Script  |  2000-04-21  |  2KB  |  109 lines

  1. # -*- Perl -*-
  2. eval "exec /usr/local/bin/perl -S $0 $*"
  3.     if $running_under_some_shell;
  4. # Usage:
  5. #    require "finddepth.pl";
  6. #
  7. #    &finddepth('/foo','/bar');
  8. #
  9. #    sub wanted { ... }
  10. #        where wanted does whatever you want.  $dir contains the
  11. #        current directory name, and $_ the current filename within
  12. #        that directory.  $name contains "$dir/$_".  You are cd'ed
  13. #        to $dir when the function is called.  The function may
  14. #        set $prune to prune the tree.
  15. #
  16. # This library is primarily for find2perl, which, when fed
  17. #
  18. #   find2perl / -name .nfs\* -mtime +7 -exec rm -f {} \; -o -fstype nfs -prune
  19. #
  20. # spits out something like this
  21. #
  22. #    sub wanted {
  23. #        /^\.nfs.*$/ &&
  24. #        (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) &&
  25. #        int(-M _) > 7 &&
  26. #        unlink($_)
  27. #        ||
  28. #        ($nlink || (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_))) &&
  29. #        $dev < 0 &&
  30. #        ($prune = 1);
  31. #    }
  32.  
  33. sub finddepth {
  34.     chop($cwd = `cd`);
  35.     foreach $topdir (@_) {
  36.     (($topdev,$topino,$topmode,$topnlink) = stat($topdir))
  37.       || (warn("Can't stat $topdir: $!\n"), next);
  38.     if (-d _) {
  39.         if (chdir($topdir)) {
  40.         $topdir =~ s,/$,, ;
  41.         &finddepthdir($topdir,$topnlink);
  42.         ($dir,$_) = ($topdir,'.');
  43.         $name = $topdir;
  44.         &wanted;
  45.         }
  46.         else {
  47.         warn "Can't cd to $topdir: $!\n";
  48.         }
  49.     }
  50.     else {
  51.         unless (($dir,$_) = $topdir =~ m#^(.*/)(.*)$#) {
  52.         ($dir,$_) = ('.', $topdir);
  53.         }
  54.         chdir $dir && &wanted;
  55.     }
  56.     chdir $cwd;
  57.     }
  58. }
  59.  
  60. sub finddepthdir {
  61.     local($dir,$nlink) = @_;
  62.     local($dev,$ino,$mode,$subcount);
  63.     local($name);
  64.  
  65.     # Get the list of files in the current directory.
  66.  
  67.     opendir(DIR,'.') || warn "Can't open $dir: $!\n";
  68.     local(@filenames) = readdir(DIR);
  69.     closedir(DIR);
  70.  
  71.     if ($nlink == 2) {        # This dir has no subdirectories.
  72.     for (@filenames) {
  73.         next if $_ eq '.';
  74.         next if $_ eq '..';
  75.         $name = "$dir/$_";
  76.         $nlink = 0;
  77.         &wanted;
  78.     }
  79.     }
  80.     else {                    # This dir has subdirectories.
  81.     $subcount = $nlink - 2;
  82.     for (@filenames) {
  83.         next if $_ eq '.';
  84.         next if $_ eq '..';
  85.         $nlink = $prune = 0;
  86.         $name = "$dir/$_";
  87.         if ($subcount > 0) {    # Seen all the subdirs?
  88.  
  89.         # Get link count and check for directoriness.
  90.  
  91.         ($dev,$ino,$mode,$nlink) = lstat($_) unless $nlink;
  92.         
  93.         if (-d _) {
  94.  
  95.             # It really is a directory, so do it recursively.
  96.  
  97.             if (!$prune && chdir $_) {
  98.             &finddepthdir($name,$nlink);
  99.             chdir '..';
  100.             }
  101.             --$subcount;
  102.         }
  103.         }
  104.         &wanted;
  105.     }
  106.     }
  107. }
  108. 1;
  109.