4 # Copyright (c) - 1998 Dirk Koopman G1TLH
21 use vars qw($fp $maxspots $defaultspots $maxdays $dirprefix $duplth $dupage $filterdef);
24 $maxspots = 50; # maximum spots to return
25 $defaultspots = 10; # normal number of spots to return
26 $maxdays = 3*31; # normal maximum no of days to go back
28 $duplth = 20; # the length of text to use in the deduping
29 $dupage = 3*3600; # the length of time to hold spot dups
31 # tag, sort, field, priv, special parser
32 ['freq', 'r', 0, 0, \&decodefreq],
33 ['on', 'r', 0, 0, \&decodefreq],
37 ['call_dxcc', 'n', 5],
39 ['origin', 'c', 7, 9],
41 ['call_zone', 'n', 9],
44 ['channel', 'n', 12, 9],
48 # create a Spot Object
53 return bless $self, $class;
60 my @f = split /,/, $l;
68 } elsif (($a, $b) = $f =~ m{^(\w+)(?:/(\w+))?$}) {
70 my @fr = Bands::get_freq(lc $a, $b);
75 push @out, "$a/$b"; # add them as ranges
78 return ('dfreq', $dxchan->msg('dfreq1', $f));
81 return ('dfreq', $dxchan->msg('e20', $f));
84 return (0, join(',', @out));
89 mkdir "$dirprefix", 0777 if !-e "$dirprefix";
90 $fp = DXLog::new($dirprefix, "dat", 'd');
98 # add a spot to the data file (call as Spot::add)
101 my @spot = @_; # $freq, $call, $t, $comment, $spotter = @_
102 my @out = @spot[0..4]; # just up to the spotter
104 # normalise frequency
105 $spot[0] = sprintf "%.f", $spot[0];
107 # remove ssids if present on spotter
108 $out[4] =~ s/-\d+$//o;
110 # remove leading and trailing spaces
111 $spot[3] = unpad($spot[3]);
113 # add the 'dxcc' country on the end for both spotted and spotter, then the cluster call
114 my @dxcc = Prefix::extract($out[1]);
115 my $spotted_dxcc = (@dxcc > 0 ) ? $dxcc[1]->dxcc() : 0;
116 my $spotted_itu = (@dxcc > 0 ) ? $dxcc[1]->itu() : 0;
117 my $spotted_cq = (@dxcc > 0 ) ? $dxcc[1]->cq() : 0;
118 push @out, $spotted_dxcc;
119 @dxcc = Prefix::extract($out[4]);
120 my $spotter_dxcc = (@dxcc > 0 ) ? $dxcc[1]->dxcc() : 0;
121 my $spotter_itu = (@dxcc > 0 ) ? $dxcc[1]->itu() : 0;
122 my $spotter_cq = (@dxcc > 0 ) ? $dxcc[1]->cq() : 0;
123 push @out, $spotter_dxcc;
126 my $buf = join("\^", @out);
128 # compare dates to see whether need to open another save file (remember, redefining $fp
129 # automagically closes the output file (if any)).
130 $fp->writeunix($out[2], $buf);
132 return (@out, $spotted_itu, $spotted_cq, $spotter_itu, $spotter_cq);
135 # search the spot database for records based on the field no and an expression
136 # this returns a set of references to the spots
138 # the expression is a legal perl 'if' statement with the possible fields indicated
143 # $f2 = date in unix format
146 # $f5 = spotted dxcc country
147 # $f6 = spotter dxcc country
151 # In addition you can specify a range of days, this means that it will start searching
152 # from <n> days less than today to <m> days less than today
154 # Also you can select a range of entries so normally you would get the 0th (latest) entry
155 # back to the 5th latest, you can specify a range from the <x>th to the <y>the oldest.
157 # This routine is designed to be called as Spot::search(..)
162 my ($expr, $dayfrom, $dayto, $from, $to, $hint) = @_;
168 my @today = Julian::unixtoj(time());
172 $dayfrom = 0 if !$dayfrom;
173 $dayto = $maxdays if !$dayto;
174 @fromdate = Julian::sub(@today, $dayfrom);
175 @todate = Julian::sub(@fromdate, $dayto);
176 $from = 0 unless $from;
177 $to = $defaultspots unless $to;
178 $hint = $hint ? "next unless $hint" : "";
179 $expr = "1" unless $expr;
181 $to = $from + $maxspots if $to - $from > $maxspots || $to - $from <= 0;
183 $expr =~ s/\$f(\d)/\$ref->[$1]/g; # swap the letter n for the correct field name
184 # $expr =~ s/\$f(\d)/\$spots[$1]/g; # swap the letter n for the correct field name
186 dbg("search", "hint='$hint', expr='$expr', spotno=$from-$to, day=$dayfrom-$dayto\n");
188 # build up eval to execute
193 push \@spots, [ split '\\^' ];
197 for (\$c = \$#spots; \$c >= 0; \$c--) {
198 \$ref = \$spots[\$c];
201 next if \$count < \$from; # wait until from
203 last if \$count >= \$to; # stop after to
208 $fp->close; # close any open files
210 for ($i = $count = 0; $i < $maxdays; ++$i) { # look thru $maxdays worth of files only
211 my @now = Julian::sub(@fromdate, $i); # but you can pick which $maxdays worth
212 last if Julian::cmp(@now, @todate) <= 0;
215 my $fh = $fp->open(@now); # get the next file
218 eval $eval; # do the search on this file
219 last if $count >= $to; # stop after to
220 return ("Spot search error", $@) if $@;
227 # change a freq range->regular expression
231 return undef unless $a < $b;
233 my @a = split //, $a;
234 my @b = split //, $b;
244 } elsif ($aa < $bb) {
247 $out .= "[0-$bb$aa-9]";
253 # format a spot for user output in 'broadcast' mode
256 my $wantgrid = shift;
257 my $t = ztime($_[2]);
258 my $ref = DXUser->get_current($_[4]);
259 my $loc = $ref->qra if $ref && $ref->qra && $wantgrid;
260 $loc = ' ' . substr($ref->qra, 0, 4) if $loc;
261 $loc = "" unless $loc;
262 return sprintf "DX de %-7.7s%11.1f %-12.12s %-30s %s$loc", "$_[4]:", $_[0], $_[1], $_[3], $t ;
265 # format a spot for user output in list mode
268 my $t = ztime($_[2]);
269 my $d = cldate($_[2]);
270 return sprintf "%8.1f %-11s %s %s %-28.28s%7s>", $_[0], $_[1], $d, $t, $_[3], "<$_[4]" ;
274 # return all the spots from a day's file as an array of references
275 # the parameter passed is a julian day
280 my $fh = $fp->open(@_);
285 push @spots, [ split '\^' ];
291 # enter the spot for dup checking and return true if it is already a dup
294 my ($freq, $call, $d, $text) = @_;
297 return 2 if $d < $main::systime - $dupage;
299 $freq = sprintf "%.1f", $freq; # normalise frequency
301 $text = substr($text, 0, $duplth) if length $text > $duplth;
303 $text =~ s/[\\\%]\d+//g;
304 $text =~ s/[^a-zA-Z0-9]//g;
305 my $dupkey = "X$freq|$call|$d|\L$text";
306 return DXDupe::check($dupkey, $main::systime+$dupage);
311 return DXDupe::listdups('X', $dupage, @_);