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.2 by root, Wed Apr 9 18:18:41 2008 UTC vs.
Revision 1.14 by root, Tue Oct 4 18:33:26 2011 UTC

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 strict;
7use Getopt::Long; 7use Getopt::Long;
8use Time::HiRes ();
8use IO::AIO; 9use IO::AIO;
9 10
10Getopt::Long::Configure ("bundling", "no_ignore_case", "require_order"); 11our $VERSION = $IO::AIO::VERSION;
11 12
13Getopt::Long::Configure ("bundling", "no_ignore_case", "require_order", "auto_help", "auto_version");
14
12my ($opt_silent, $opt_print0, $opt_stat); 15my ($opt_silent, $opt_print0, $opt_stat, $opt_nodirs,
16 $opt_nofiles, $opt_grep, $opt_progress);
13 17
14GetOptions 18GetOptions
15 "quiet|q" => \$opt_silent, 19 "quiet|q" => \$opt_silent,
16 "print0|0" => \$opt_print0, 20 "print0|0" => \$opt_print0,
17 "stat|s" => \$opt_stat, 21 "stat|s" => \$opt_stat,
18; 22 "dirs|d" => \$opt_nofiles,
23 "files|f" => \$opt_nodirs,
24 "grep|g=s" => \$opt_grep,
25 "progress|p" => \$opt_progress,
26 or die "Usage: try $0 --help";
19 27
20@ARGV = "." unless @ARGV; 28@ARGV = "." unless @ARGV;
29
30$opt_grep &&= qr{$opt_grep}s;
31
32my ($n_dirs, $n_files, $n_stats) = (0, 0, 0);
33my ($n_last, $n_start) = (Time::HiRes::time) x 2;
21 34
22sub printfn { 35sub printfn {
23 my ($prefix, $files, $suffix) = @_; 36 my ($prefix, $files, $suffix) = @_;
24 37
38 if ($opt_grep) {
39 @$files = grep "$prefix$_" =~ $opt_grep, @$files;
40 }
41
25 if ($opt_print0) { 42 if ($opt_print0) {
26 print map "$prefix$_$suffix\0", @$files; 43 print map "$prefix$_$suffix\0", @$files;
27 } elsif (!$opt_silent) { 44 } elsif (!$opt_silent) {
28 print map "$prefix$_$suffix\n", @$files; 45 print map "$prefix$_$suffix\n", @$files;
29 } 46 }
32sub scan { 49sub scan {
33 my ($path) = @_; 50 my ($path) = @_;
34 51
35 $path .= "/"; 52 $path .= "/";
36 53
54 IO::AIO::poll_cb;
55
56 if ($opt_progress and $n_last + 1 < Time::HiRes::time) {
57 $n_last = Time::HiRes::time;
58 my $d = $n_last - $n_start;
59 printf STDERR "\r%d dirs (%g/s) %d files (%g/s) %d stats (%g/s) ",
60 $n_dirs, $n_dirs / $d,
61 $n_files, $n_files / $d,
62 $n_stats, $n_stats / $d
63 if $opt_progress;
64 }
65
37 aioreq_pri -1; 66 aioreq_pri -1;
67 ++$n_dirs;
38 aio_scandir $path, 8, sub { 68 aio_scandir $path, 8, sub {
39 my ($dirs, $files) = @_; 69 my ($dirs, $files) = @_
70 or warn "$path: $!\n";
40 71
41 printfn "", [$path]; 72 printfn "", [$path] unless $opt_nodirs;
42 printfn $path, $files; 73 printfn $path, $files unless $opt_nofiles;
74
75 $n_files += @$files;
43 76
44 if ($opt_stat) { 77 if ($opt_stat) {
78 aio_wd $path, sub {
79 my $wd = shift;
80
45 aio_lstat "$path$_" for @$files; 81 aio_lstat [$wd, $_] for @$files;
82 $n_stats += @$files;
83 };
46 } 84 }
47 85
48 &scan ("$path$_") for @$dirs; 86 &scan ("$path$_") for @$dirs;
49 }; 87 };
50} 88}
51 89
52IO::AIO::max_outstanding 64; 90IO::AIO::max_outstanding 100; # two fds per directory, so limit accordingly
53IO::AIO::min_parallel 32; 91IO::AIO::min_parallel 20;
54 92
55for my $seed (@ARGV) { 93for my $seed (@ARGV) {
56 $seed =~ s/\/+$//; 94 $seed =~ s/\/+$//;
57 aio_lstat "$seed/.", sub { 95 aio_lstat "$seed/.", sub {
96 if ($_[0]) {
97 print STDERR "$seed: $!\n";
58 if (-d _) { 98 } elsif (-d _) {
59 scan $seed; 99 scan $seed;
60 } else { 100 } else {
61 printfn "", $seed, "/"; 101 printfn "", $seed, "/";
62 } 102 }
63 }; 103 };

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines