X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXLogPrint.pm;h=ad0b1970017d639ae60f8e7c2e5aba1e10e2947a;hb=2b58ccdf81685a1167a43c38705a0d84b9d8d661;hp=b287413da9a511d7e5cb8e3863889c0228bde6d9;hpb=85564500ce87c832f2a99fd96ccc1775dc896a0d;p=spider.git diff --git a/perl/DXLogPrint.pm b/perl/DXLogPrint.pm index b287413d..ad0b1970 100644 --- a/perl/DXLogPrint.pm +++ b/perl/DXLogPrint.pm @@ -10,14 +10,19 @@ package DXLog; use IO::File; use DXVars; -use DXDebug (); +#use DXDebug (); use DXUtil; use DXLog; use Julian; -use Carp; use strict; +use vars qw($VERSION $BRANCH); +$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ ); +$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0; +$main::build += $VERSION; +$main::branch += $BRANCH; + # # print some items from the log backwards in time # @@ -26,51 +31,57 @@ use strict; sub print { my $fcb = $DXLog::log; - my $from = shift; - my $to = shift; - my @date = Julian::unixtojm(shift); + my $from = shift || 0; + my $to = shift || 20; + my $count; + my $jdate = $fcb->unixtoj(shift); my $pattern = shift; my $who = uc shift; my $search; my @in; my @out = (); my $eval; - my $count; + my $tot = $from + $to; + my $hint = ""; - $search = '1' unless $pattern || $who; - $search = "\$ref->[1] =~ /$pattern/" if $pattern; - $search .= ' && ' if $pattern && $who; - $search .= "(\$ref->[2] =~ /$who/ || \$ref->[3] =~ /$who/)" if $who; + if ($pattern) { + $hint = "m{\\Q$pattern\\E}i"; + } + if ($who) { + if ($hint) { + $hint .= ' && '; + } + $hint .= 'm{\\Q$who\\E}i'; + } + $hint = "next unless $hint" if $hint; + $eval = qq( - my \$c; - my \$ref; - for (\$c = \$#in; \$c >= 0; \$c--) { - \$ref = \$in[\$c]; - if ($search) { - \$count++; - next if \$count < $from; - push \@out, print_item(\$ref); - last if \$count >= \$to; # stop after n - } - } - ); + \@in = (); + while (<\$fh>) { + $hint; + chomp; + push \@in, \$_; + shift \@in, if \@in > $tot; + } + ); $fcb->close; # close any open files - my $fh = $fcb->open(@date); - for ($count = 0; $count < $to; ) { + my $fh = $fcb->open($jdate); + L1: for ($count = 0; $count < $to; ) { my $ref; if ($fh) { - @in = (); - while (<$fh>) { - chomp; - $ref = [ split '\^' ]; - push @{$ref}, "" unless @{$ref} >= 4; - push @in, $ref; - } eval $eval; # do the search on this file - last if $count >= $to; # stop after n return ("Log search error", $@) if $@; + my @tmp; + while (@in) { + last L1 if $count >= $to; + my $ref = [ split /\^/, shift @in ]; + next if defined $pattern && $ref->[1] ne $pattern; + push @tmp, print_item($ref); + $count++; + } + @out = (@tmp, @out); } $fh = $fcb->openprev(); # get the next file last if !$fh;