X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=cmd%2Fshow%2Fhfstats.pl;h=1964a23ab60550f9023db22feb74ac22ac9ed3be;hb=681ed7b3c6d79228a68054489058b619f62974bf;hp=c2e055f7d0f878097e00034ee924dce2fe597024;hpb=a76624e4742348ed0f39c7c3f732cdec8462da9e;p=spider.git diff --git a/cmd/show/hfstats.pl b/cmd/show/hfstats.pl index c2e055f7..1964a23a 100644 --- a/cmd/show/hfstats.pl +++ b/cmd/show/hfstats.pl @@ -25,76 +25,90 @@ use Date::Parse; -my ($self, $line) = @_; -my @f = split /\s+/, $line; -my $days = 31; -my $now; -my $date = cldate($main::systime); -my $utime = $main::systime; -my @out; +sub handle +{ -while (@f) { - my $f = shift @f; + my ($self, $line) = @_; + my @f = split /\s+/, $line; + my @out; + my $days = 31; - if ($f =~ /^\d+$/ && $f < 366) { # no of days - $days = $f; - next; + my $utime = $main::systime; + + while (@f) { + my $f = shift @f; + + if ($f =~ /^\d+$/ && $f < 366) { # no of days + $days = $f; + next; + } elsif (my $ut = Date::Parse::str2time($f)) { # is it a parseable date? + $utime = $ut+3600; + next; + } + push @out, $self->msg('e33', $f); } - if (my $ut = Date::Parse::str2time($f)) { # is it a parseable date? - $utime = $ut+3600; - next; + + return (1, @out) if @out; + + my $now = Julian::Day->new($utime); + $now = $now->sub($days); + my $today = cldate($utime); + +# @out = $self->spawn_cmd("show/hfstats $line", sub { +# }); + + if ($self->{_nospawn}) { + return (1, generate($self, $days, $now, $today)); + } + else { + return (1, $self->spawn_cmd("show/hfstats $line", sub { (generate($self, $days, $now, $today )); })); } - push @out, $self->msg('e33', $f); } -return (1, @out) if @out; - -$now = Julian::Day->new($utime); -$now = $now->sub($days); -$date = cldate($utime); -@out = $self->spawn_cmd(sub { - my %list; - my @out; - my @in; - my $i; - # generate the spot list - for ($i = 0; $i < $days; $i++) { - my $fh = $Spot::statp->open($now); # get the next file - unless ($fh) { - Spot::genstats($now); - $fh = $Spot::statp->open($now); - } - while (<$fh>) { - chomp; - my @l = split /\^/; - next unless $l[0] eq 'TOTALS'; - next unless $l[1]; - $l[0] = $now; - push @in, \@l; - last; - } - $now = $now->add(1); - } +sub generate +{ + my ($self, $days, $now, $today) = @_; + + my %list; + my @out; + my @in; + my $i; + # generate the spot list + for ($i = 0; $i < $days; $i++) { + my $fh = $Spot::statp->open($now); # get the next file + unless ($fh) { + Spot::genstats($now); + $fh = $Spot::statp->open($now); + } + while (<$fh>) { + chomp; + my @l = split /\^/; + next unless $l[0] eq 'TOTALS'; + next unless $l[1]; + $l[0] = $now; + push @in, \@l; + last; + } + $now = $now->add(1); + } - my @tot; + my @tot; - push @out, $self->msg('stathf', $date, $days); - push @out, sprintf "%6s|%6s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|", qw(Date Total 160m 80m 60m 40m 30m 20m 17m 15m 12m 10m); - foreach my $ref (@in) { - my $linetot = 0; - foreach my $j (4..13) { - $tot[$j] += $ref->[$j]; - $tot[0] += $ref->[$j]; - $linetot += $ref->[$j]; - } - my $date = $ref->[0]->as_string; - $date =~ s/-\d+$//; - push @out, join '|', sprintf("%6s|%6d", $date, $linetot), map {$_ ? sprintf("%5d", $_) : ' '} @$ref[4..13], ""; - } - push @out, join '|', sprintf("%6s|%6d", 'Total', $tot[0]), map {$_ ? sprintf("%5d", $_) : ' '} @tot[4..13], ""; - return @out - }); - + push @out, $self->msg('stathf', $today, $days); + push @out, sprintf "%6s|%6s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|", qw(Date Total 160m 80m 60m 40m 30m 20m 17m 15m 12m 10m); + foreach my $ref (@in) { + my $linetot = 0; + foreach my $j (4..13) { + $tot[$j] += $ref->[$j]; + $tot[0] += $ref->[$j]; + $linetot += $ref->[$j]; + } + my $today = $ref->[0]->as_string; + $today =~ s/-\d+$//; + push @out, join '|', sprintf("%6s|%6d", $today, $linetot), map {$_ ? sprintf("%5d", $_) : ' '} @$ref[4..13], ""; + } + push @out, join '|', sprintf("%6s|%6d", 'Total', $tot[0]), map {$_ ? sprintf("%5d", $_) : ' '} @tot[4..13], ""; + return @out -return (1, @out); +}