ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/bin/treescan
(Generate patch)

Comparing IO-AIO/bin/treescan (file contents):
Revision 1.1 by root, Mon Sep 10 11:24:20 2007 UTC vs.
Revision 1.7 by root, Tue Sep 27 12:10:29 2011 UTC

1#!/opt/bin/perl 1#!/opt/bin/perl
2 2
3# inspired by treescan by Jamie Lokier <jamie@imbolc.ucc.ie> 3# inspired by treescan by Jamie Lokier <jamie@imbolc.ucc.ie>
4# about 40% faster than the original version (on my fs and raid :) 4# about 40% faster than the original version (on my fs and raid :)
5 5
6use strict;
6use Getopt::Long; 7use Getopt::Long;
7use IO::AIO; 8use IO::AIO;
8 9
9Getopt::Long::Configure ("bundling", "no_ignore_case", "require_order"); 10our $VERSION = $IO::AIO::VERSION;
10 11
11my ($opt_silent, $opt_print0, $opt_stat); 12Getopt::Long::Configure ("bundling", "no_ignore_case", "require_order", "auto_help", "auto_version");
13
14my ($opt_silent, $opt_print0, $opt_stat, $opt_nodirs, $opt_nofiles, $opt_grep);
12 15
13GetOptions 16GetOptions
14 "quiet|q" => \$opt_silent, 17 "quiet|q" => \$opt_silent,
15 "print0|0" => \$opt_print0, 18 "print0|0" => \$opt_print0,
16 "stat|s" => \$opt_stat, 19 "stat|s" => \$opt_stat,
17; 20 "dirs|d" => \$opt_nofiles,
21 "files|f" => \$opt_nodirs,
22 "grep|g=s" => \$opt_grep,
23 or die "Usage: try $0 --help";
18 24
19@ARGV = "." unless @ARGV; 25@ARGV = "." unless @ARGV;
20 26
27$opt_grep &&= qr{$opt_grep}s;
28
21sub printfn { 29sub printfn {
22 my ($path, $files, $suffix) = @_; 30 my ($prefix, $files, $suffix) = @_;
23 31
32 if ($opt_grep) {
33 @$files = grep "$prefix$_" =~ $opt_grep, @$files;
34 }
35
24 if ($opt_print0) { 36 if ($opt_print0) {
25 print map "$path/$_$suffix\0", @$files; 37 print map "$prefix$_$suffix\0", @$files;
26 } elsif (!$opt_silent) { 38 } elsif (!$opt_silent) {
27 print map "$path/$_$suffix\n", @$files; 39 print map "$prefix$_$suffix\n", @$files;
28 } 40 }
29} 41}
30 42
31sub scan { 43sub scan {
32 my ($path) = @_; 44 my ($path) = @_;
33 45
46 $path .= "/";
47
48 aioreq_pri -1;
34 aio_scandir $path, 8, sub { 49 aio_scandir $path, 8, sub {
35 my ($dirs, $files) = @_; 50 my ($dirs, $files) = @_;
36 51
52 printfn "", [$path] unless $opt_nodirs;
53 printfn $path, $files unless $opt_nofiles;
54
55 IO::AIO::poll_cb;
56
37 if ($opt_stat) { 57 if ($opt_stat) {
58 aio_wd $path, sub {
59 my $wd = shift;
60
38 aio_stat "$path/$_" for @$files; 61 aio_lstat [$wd, $_] for @$files;
62 };
39 } 63 }
40 64
41 for (@$dirs) { 65 &scan ("$path$_") for @$dirs;
42 printfn $path, $dirs, "/";
43 &scan ("$path/$_")
44 }
45
46 printfn $path, $files;
47 }; 66 };
48} 67}
49 68
50IO::AIO::max_outstanding 64; 69IO::AIO::max_outstanding 400;
51IO::AIO::min_parallel 32; 70IO::AIO::min_parallel 20;
52 71
53for my $seed (@ARGV) { 72for my $seed (@ARGV) {
54 $seed =~ s/\/+$//; 73 $seed =~ s/\/+$//;
55 aio_lstat "$seed/.", sub { 74 aio_lstat "$seed/.", sub {
75 if ($_[0]) {
76 print STDERR "$seed: $!\n";
77 } elsif (-d _) {
56 scan $seed if -d _; 78 scan $seed;
79 } else {
80 printfn "", $seed, "/";
81 }
57 }; 82 };
58} 83}
59 84
60IO::AIO::flush; 85IO::AIO::flush;
61 86

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines