X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FSpot.pm;h=efdf16ed4edcb3947ca144103c49f7da84db66f8;hb=f3adc82a0299652d929b73c718127fa38571eec5;hp=b8938bb9a174fc24f94fe5d5ed8e03420a522f1d;hpb=d5b4190c36f130852973121042876af3c5642cd7;p=spider.git diff --git a/perl/Spot.pm b/perl/Spot.pm index b8938bb9..efdf16ed 100644 --- a/perl/Spot.pm +++ b/perl/Spot.pm @@ -41,23 +41,28 @@ sub prefix sub add { my @spot = @_; # $freq, $call, $t, $comment, $spotter = @_ - + my @out = @spot[0..4]; # just up to the spotter + # sure that the numeric things are numeric now (saves time later) $spot[0] = 0 + $spot[0]; $spot[2] = 0 + $spot[2]; - # remove ssid if present on spotter - $spot[4] =~ s/-\d+$//o; - - # add the 'dxcc' country on the end - my @dxcc = Prefix::extract($spot[1]); - push @spot, (@dxcc > 0 ) ? $dxcc[1]->dxcc() : 0; + # remove ssids if present on spotter + $out[4] =~ s/-\d+$//o; + + # add the 'dxcc' country on the end for both spotted and spotter, then the cluster call + my @dxcc = Prefix::extract($out[1]); + push @out, (@dxcc > 0 ) ? $dxcc[1]->dxcc() : 0; + @dxcc = Prefix::extract($out[4]); + push @out, (@dxcc > 0 ) ? $dxcc[1]->dxcc() : 0; + push @out, $spot[5]; + - my $buf = join("\^", @spot); + my $buf = join("\^", @out); # compare dates to see whether need to open another save file (remember, redefining $fp # automagically closes the output file (if any)). - $fp->writeunix($spot[2], $buf); + $fp->writeunix($out[2], $buf); return $buf; } @@ -95,24 +100,15 @@ sub search my @today = Julian::unixtoj(time); my @fromdate; my @todate; - - if ($dayfrom > 0) { - @fromdate = Julian::sub(@today, $dayfrom); - } else { - @fromdate = @today; - $dayfrom = 0; - } - if ($dayto > 0) { - @todate = Julian::sub(@fromdate, $dayto); - } else { - @todate = Julian::sub(@fromdate, $maxdays); - } - if ($from || $to) { - $to = $from + $maxspots if $to - $from > $maxspots || $to - $from <= 0; - } else { - $from = 0; - $to = $defaultspots; - } + + $dayfrom = 0 if !$dayfrom; + $dayto = $maxdays if !$dayto; + @fromdate = Julian::sub(@today, $dayfrom); + @todate = Julian::sub(@fromdate, $dayto); + $from = 0 unless $from; + $to = $defaultspots unless $to; + + $to = $from + $maxspots if $to - $from > $maxspots || $to - $from <= 0; $expr =~ s/\$f(\d)/\$ref->[$1]/g; # swap the letter n for the correct field name # $expr =~ s/\$f(\d)/\$spots[$1]/g; # swap the letter n for the correct field name @@ -123,20 +119,19 @@ sub search $eval = qq( my \$c; my \$ref; - for (\$c = \$ #spots; \$c >= 0; \$c--) { + for (\$c = \$#spots; \$c >= 0; \$c--) { \$ref = \$spots[\$c]; if ($expr) { \$count++; next if \$count < \$from; # wait until from push(\@out, \$ref); - last LOOP if \$count >= \$to; # stop after to + last if \$count >= \$to; # stop after to } } ); $fp->close; # close any open files - LOOP: for ($i = 0; $i < $maxdays; ++$i) { # look thru $maxdays worth of files only my @now = Julian::sub(@fromdate, $i); # but you can pick which $maxdays worth last if Julian::cmp(@now, @todate) <= 0; @@ -150,6 +145,7 @@ sub search push @spots, [ split '\^' ]; } eval $eval; # do the search on this file + last if $count >= $to; # stop after to return ("Spot search error", $@) if $@; } }