X-Git-Url: http://www.dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FSpot.pm;h=d5b5adf93994ef4aa6f5fba77689268feff524c3;hb=b5b58db69484da5554b4f7e10b813d13e8cf16cb;hp=e86354d77b01fe7b8017a225f557c54a25109dfd;hpb=21e7642d216656c60b164d76208633a0c81cf5db;p=spider.git diff --git a/perl/Spot.pm b/perl/Spot.pm index e86354d7..d5b5adf9 100644 --- a/perl/Spot.pm +++ b/perl/Spot.pm @@ -11,17 +11,26 @@ package Spot; use FileHandle; use DXVars; use DXDebug; +use DXUtil; use Julian; +use Prefix; +use Carp; @ISA = qw(Julian); use strict; +use vars qw($fp $maxspots $defaultspots $maxdays $dirprefix); -my $fp; -my $maxspots = 50; # maximum spots to return -my $defaultspots = 10; # normal number of spots to return -my $maxdays = 35; # normal maximum no of days to go back -my $prefix = "$main::data/spots"; +$fp = undef; +$maxspots = 50; # maximum spots to return +$defaultspots = 10; # normal number of spots to return +$maxdays = 35; # normal maximum no of days to go back +$dirprefix = "$main::data/spots"; + +sub prefix +{ + return $dirprefix; +} # add a spot to the data file (call as Spot::add) sub add @@ -32,6 +41,9 @@ sub add $spot[0] = 0 + $spot[0]; $spot[2] = 0 + $spot[2]; + # remove ssid if present on spotter + $spot[4] =~ s/-\d+$//o; + # compare dates to see whether need to open another save file (remember, redefining $fp # automagically closes the output file (if any)) my @date = Julian::unixtoj($spot[2]); @@ -39,7 +51,15 @@ sub add # save it my $fh = $fp->{fh}; - $fh->print(join("\^", @spot), "\n"); + + # add the 'dxcc' country on the end + my @dxcc = Prefix::extract($spot[1]); + push @spot, (@dxcc > 0 ) ? $dxcc[1]->dxcc() : 0; + + my $buf = join("\^", @spot); + $fh->print($buf, "\n"); + + return $buf; } # search the spot database for records based on the field no and an expression @@ -53,6 +73,7 @@ sub add # $f2 = date in unix format # $f3 = comment # $f4 = spotter +# $f5 = dxcc country # # In addition you can specify a range of days, this means that it will start searching # from days less than today to days less than today @@ -93,17 +114,25 @@ sub search $to = $defaultspots; } - $expr =~ s/\$f(\d)/zzzref->[$1]/g; # swap the letter n for the correct field name - $expr =~ s/[\@\$\%\{\}]//g; # remove any other funny characters - $expr =~ s/\&\w+\(//g; # remove subroutine calls - $expr =~ s/eval//g; # remove eval words - $expr =~ s/zzzref/\$ref/g; # put back the $ref - $expr =~ s|(/.+/)|$1oi|g; # add oi characters to /ccc/ + $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 - print "expr=($expr), from=$from, to=$to\n"; + dbg("search", "expr='$expr', spotno=$from-$to, day=$dayfrom-$dayto\n"); # build up eval to execute - $eval = qq(my \$c; + $eval = qq( +# while (<\$fh>) { +# chomp; +# my \@spots = split /\\^/o; +# if ($expr) { # note NO \$expr +# \$count++; +# next if \$count < \$from; # wait until from +# push(\@out, \\\@spots); +# last LOOP if \$count >= \$to; # stop after to +# } +# } + my \$c; + my \$ref; for (\$c = \$#spots; \$c >= 0; \$c--) { \$ref = \$spots[\$c]; if ($expr) { @@ -112,11 +141,12 @@ sub search push(\@out, \$ref); last LOOP if \$count >= \$to; # stop after to } - }); + } + ); LOOP: - for ($i = 0; $i < 60; ++$i) { - my @now = Julian::sub(@fromdate, $i); + 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; my @spots = (); @@ -126,11 +156,10 @@ LOOP: my $in; foreach $in (<$fh>) { chomp $in; - push @spots, [ split('\^', $in) ]; + push @spots, [ split('\^', $in) ]; } - my $ref; eval $eval; # do the search on this file - return ("error", $@) if $@; + return ("Spot search error", $@) if $@; } } @@ -141,7 +170,7 @@ LOOP: sub open { my $pkg = shift; - return Julian::open("spot", $prefix, @_); + return Julian::open("spot", $dirprefix, @_); } # close a spot file @@ -150,4 +179,21 @@ sub close # do nothing, unreferencing or overwriting the $self will close it } +# format a spot for user output in 'broadcast' mode +sub formatb +{ + my @dx = @_; + my $t = ztime($dx[2]); + return sprintf "DX de %-7.7s: %13.1f %-12.12s %-30s<%s>", $dx[4], $dx[0], $dx[1], $dx[3], $t ; +} + +# format a spot for user output in list mode +sub formatl +{ + my @dx = @_; + my $t = ztime($dx[2]); + my $d = cldate($dx[2]); + return sprintf "%9.1f %-12s %s %s %-30s<%s>", $dx[0], $dx[1], $d, $t, $dx[3], $dx[4] ; +} + 1;