X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2Fgrepdbg;h=f133a143448972d0e75e5f019fb9015665ef77ff;hb=a6a9fc181ae90c318bf47a84c8bb9695ec7a39c6;hp=3d1526f8d70b93446548ee9257ce7b0c87349484;hpb=c5a41c1d2673b53c38d649ad90feee12ad1e286d;p=spider.git diff --git a/perl/grepdbg b/perl/grepdbg index 3d1526f8..f133a143 100755 --- a/perl/grepdbg +++ b/perl/grepdbg @@ -29,7 +29,7 @@ BEGIN { unshift @INC, "$root/local"; } -use DXVars; +use SysVar; use DXUtil; use DXLog; use Julian; @@ -38,6 +38,7 @@ use strict; use vars qw(@list $fp $today $string); + $fp = DXLog::new('debug', 'dat', 'd'); $today = $fp->unixtoj(time()); my $nolines = 1; @@ -46,6 +47,10 @@ my @prev; for my $arg (@ARGV) { if ($arg =~ /^-/) { $arg =~ s/^-//o; + if ($arg =~ /^\s*\-+(?:[h\?]e?l?p?)/) { + usage(); + exit(0); + } push @list, $arg; } elsif ($arg =~ /^\d+$/) { $nolines = $arg; @@ -54,7 +59,8 @@ for my $arg (@ARGV) { last; } } -die "usage: grepdbg [nn] [[-nnn] ..] \n" unless $string; + +$string ||= '.*'; push @list, "0" unless @list; for my $entry (@list) { @@ -63,20 +69,30 @@ for my $entry (@list) { my $line; if ($fh) { while (<$fh>) { - my $line = $_; - chomp $line; - push @prev, $line; - shift @prev while @prev > $nolines; - if ($line =~ m{$string}io) { - for (@prev) { - s/([\x00-\x1f\x7f-\xff])/sprintf("\\x%02X", ord($1))/eg; - my ($t, $l) = split /\^/, $_, 2; - print atime($t), ' ', $l, "\n"; - } - @prev = (); - } + process($_); } $fp->close(); } } + +sub process +{ + my $line = shift; + chomp $line; + push @prev, $line; + shift @prev while @prev > $nolines; + if ($line =~ m{$string}io) { + for (@prev) { + s/([\x00-\x1f\x7f-\xff])/sprintf("\\x%02X", ord($1))/eg; + my ($t, $l) = split /\^/, $_, 2; + print atime($t), ' ', $l, "\n"; + } + @prev = (); + } +} + +sub usage +{ + die "usage: grepdbg [nn] [[-nnn] ..] \n"; +} exit(0);