X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fvhfstats.pl;fp=cmd%2Fshow%2Fvhfstats.pl;h=2a9a6dd3cb4e67d6f318bbda4e780a35b80d8b44;hb=a8b49f6c169f586810953d354fb90df33c030e58;hp=b819ab7ca29fdfd212695f7ceeb539d377a59249;hpb=f2c90f82509ae2be33216ebaed3bc9f8ea3f5f80;p=spider.git diff --git a/cmd/show/vhfstats.pl b/cmd/show/vhfstats.pl index b819ab7c..2a9a6dd3 100644 --- a/cmd/show/vhfstats.pl +++ b/cmd/show/vhfstats.pl @@ -6,74 +6,84 @@ # # -my ($self, $line) = @_; -my @f = split /\s+/, $line; my $days = 31; my $now; my $date = cldate($main::systime); my $utime = $main::systime; -my @out; -while (@f) { - my $f = shift @f; +sub handle { + my ($self, $line) = @_; + my @f = split /\s+/, $line; + my @out; - if ($f =~ /^\d+$/ && $f < 366) { # no of days - $days = $f; - next; - } - if (my $ut = Date::Parse::str2time($f)) { # is it a parseable date? - $utime = $ut+3600; - next; + while (@f) { + my $f = shift @f; + + if ($f =~ /^\d+$/ && $f < 366) { # no of days + $days = $f; + next; + } + if (my $ut = Date::Parse::str2time($f)) { # is it a parseable date? + $utime = $ut+3600; + next; + } + push @out, $self->msg('e33', $f); } - push @out, $self->msg('e33', $f); -} -return (1, @out) if @out; + return (1, @out) if @out; -$now = Julian::Day->new($utime); -$now = $now->sub($days); -$date = cldate($utime); + $now = Julian::Day->new($utime); + $now = $now->sub($days); + $date = cldate($utime); -@out = $self->spawn_cmd("show/vhfstats $line", sub { - my %list; - my @out; - my @in; - my $i; + if ($self->{_nospawn}) { + return (1, generate($self)); + } + else { + return (1, $self->spawn_cmd("show/vhfstats $line", sub { return (generate($self)); })) + } +} -# 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 = shift; + my %list; + my @out; + my @in; + my $i; - my @tot; + # 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); + } - push @out, $self->msg('statvhf', $date, $days); - push @out, sprintf "%11s|%6s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|", qw(Date Total 6m 4m 2m 70cm 23cm 13cm 9cm 6cm 3cm); - foreach my $ref (@in) { - my $linetot = 0; - foreach my $j (14..16,18..23) { - $tot[$j] += $ref->[$j]; - $tot[0] += $ref->[$j]; - $linetot += $ref->[$j]; - } - push @out, join('|', sprintf("%11s|%6d", $ref->[0]->as_string, $linetot), map {$_ ? sprintf("%5d", $_) : ' '} @$ref[14..16,18..23]) . '|'; - } - push @out, join('|', sprintf("%11s|%6d", 'Total', $tot[0]), map {$_ ? sprintf("%5d", $_) : ' '} @tot[14..16,18..23]) . '|'; - return @out; - }); + my @tot; -return (1, @out); + push @out, $self->msg('statvhf', $date, $days); + push @out, sprintf "%11s|%6s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|", qw(Date Total 6m 4m 2m 70cm 23cm 13cm 9cm 6cm 3cm); + foreach my $ref (@in) { + my $linetot = 0; + foreach my $j (14..16,18..23) { + $tot[$j] += $ref->[$j]; + $tot[0] += $ref->[$j]; + $linetot += $ref->[$j]; + } + push @out, join('|', sprintf("%11s|%6d", $ref->[0]->as_string, $linetot), map {$_ ? sprintf("%5d", $_) : ' '} @$ref[14..16,18..23]) . '|'; + } + push @out, join('|', sprintf("%11s|%6d", 'Total', $tot[0]), map {$_ ? sprintf("%5d", $_) : ' '} @tot[14..16,18..23]) . '|'; + return @out; +}