various merges with the portable
[spider.git] / perl / Spot.pm
1 #
2 # the dx spot handler
3 #
4 # Copyright (c) - 1998 Dirk Koopman G1TLH
5 #
6 # $Id$
7 #
8
9 package Spot;
10
11 use FileHandle;
12 use DXVars;
13 use DXDebug;
14 use DXUtil;
15 use DXLog;
16 use Julian;
17 use Prefix;
18 use Carp;
19
20 use strict;
21 use vars qw($fp $maxspots $defaultspots $maxdays $dirprefix);
22
23 $fp = undef;
24 $maxspots = 50;                                 # maximum spots to return
25 $defaultspots = 10;                             # normal number of spots to return
26 $maxdays = 35;                                  # normal maximum no of days to go back
27 $dirprefix = "spots";
28
29 sub init
30 {
31         mkdir "$dirprefix", 0777 if !-e "$dirprefix";
32         $fp = DXLog::new($dirprefix, "dat", 'd')
33 }
34
35 sub prefix
36 {
37         return $fp->{prefix};
38 }
39
40 # add a spot to the data file (call as Spot::add)
41 sub add
42 {
43         my @spot = @_;                          # $freq, $call, $t, $comment, $spotter = @_
44         my @out = @spot[0..4];      # just up to the spotter
45         
46         # sure that the numeric things are numeric now (saves time later)
47         $spot[0] = 0 + $spot[0];
48         $spot[2] = 0 + $spot[2];
49   
50         # remove ssids if present on spotter
51         $out[4] =~ s/-\d+$//o;
52
53         # add the 'dxcc' country on the end for both spotted and spotter, then the cluster call
54         my @dxcc = Prefix::extract($out[1]);
55         my $spotted_dxcc = (@dxcc > 0 ) ? $dxcc[1]->dxcc() : 0;
56         my $spotted_itu = (@dxcc > 0 ) ? $dxcc[1]->itu() : 0;
57         my $spotted_cq = (@dxcc > 0 ) ? $dxcc[1]->cq() : 0;
58         push @out, $spotted_dxcc;
59         @dxcc = Prefix::extract($out[4]);
60         my $spotter_dxcc = (@dxcc > 0 ) ? $dxcc[1]->dxcc() : 0;
61         my $spotter_itu = (@dxcc > 0 ) ? $dxcc[1]->itu() : 0;
62         my $spotter_cq = (@dxcc > 0 ) ? $dxcc[1]->cq() : 0;
63         push @out, $spotter_dxcc;
64         push @out, $spot[5];
65         
66         my $buf = join("\^", @out);
67
68         # compare dates to see whether need to open another save file (remember, redefining $fp 
69         # automagically closes the output file (if any)). 
70         $fp->writeunix($out[2], $buf);
71   
72         return ($buf, $spotted_itu, $spotted_cq, $spotter_itu, $spotter_cq);
73 }
74
75 # search the spot database for records based on the field no and an expression
76 # this returns a set of references to the spots
77 #
78 # the expression is a legal perl 'if' statement with the possible fields indicated
79 # by $f<n> where :-
80 #
81 #   $f0 = frequency
82 #   $f1 = call
83 #   $f2 = date in unix format
84 #   $f3 = comment
85 #   $f4 = spotter
86 #   $f5 = dxcc country
87 #
88 # In addition you can specify a range of days, this means that it will start searching
89 # from <n> days less than today to <m> days less than today
90 #
91 # Also you can select a range of entries so normally you would get the 0th (latest) entry
92 # back to the 5th latest, you can specify a range from the <x>th to the <y>the oldest.
93 #
94 # This routine is designed to be called as Spot::search(..)
95 #
96
97 sub search
98 {
99         my ($expr, $dayfrom, $dayto, $from, $to) = @_;
100         my $eval;
101         my @out;
102         my $ref;
103         my $i;
104         my $count;
105         my @today = Julian::unixtoj(time);
106         my @fromdate;
107         my @todate;
108
109         $dayfrom = 0 if !$dayfrom;
110         $dayto = $maxdays if !$dayto;
111         @fromdate = Julian::sub(@today, $dayfrom);
112         @todate = Julian::sub(@fromdate, $dayto);
113         $from = 0 unless $from;
114         $to = $defaultspots unless $to;
115         
116         $to = $from + $maxspots if $to - $from > $maxspots || $to - $from <= 0;
117
118         $expr =~ s/\$f(\d)/\$ref->[$1]/g; # swap the letter n for the correct field name
119         #  $expr =~ s/\$f(\d)/\$spots[$1]/g;               # swap the letter n for the correct field name
120   
121         dbg("search", "expr='$expr', spotno=$from-$to, day=$dayfrom-$dayto\n");
122   
123         # build up eval to execute
124         $eval = qq(
125                            my \$c;
126                            my \$ref;
127                            for (\$c = \$#spots; \$c >= 0; \$c--) {
128                                         \$ref = \$spots[\$c];
129                                         if ($expr) {
130                                                 \$count++;
131                                                 next if \$count < \$from; # wait until from 
132                                                 push(\@out, \$ref);
133                                                 last if \$count >= \$to; # stop after to
134                                         }
135                                 }
136                           );
137
138         $fp->close;                                     # close any open files
139
140         for ($i = 0; $i < $maxdays; ++$i) {     # look thru $maxdays worth of files only
141                 my @now = Julian::sub(@fromdate, $i); # but you can pick which $maxdays worth
142                 last if Julian::cmp(@now, @todate) <= 0;         
143         
144                 my @spots = ();
145                 my $fh = $fp->open(@now); # get the next file
146                 if ($fh) {
147                         my $in;
148                         while (<$fh>) {
149                                 chomp;
150                                 push @spots, [ split '\^' ];
151                         }
152                         eval $eval;                     # do the search on this file
153                         last if $count >= $to; # stop after to
154                         return ("Spot search error", $@) if $@;
155                 }
156         }
157
158         return @out;
159 }
160
161 # format a spot for user output in 'broadcast' mode
162 sub formatb
163 {
164         my @dx = @_;
165         my $t = ztime($dx[2]);
166         return sprintf "DX de %-7.7s%11.1f  %-12.12s %-30s %s", "$dx[4]:", $dx[0], $dx[1], $dx[3], $t ;
167 }
168
169 # format a spot for user output in list mode
170 sub formatl
171 {
172         my @dx = @_;
173         my $t = ztime($dx[2]);
174         my $d = cldate($dx[2]);
175         return sprintf "%8.1f  %-11s %s %s  %-28.28s%7s>", $dx[0], $dx[1], $d, $t, $dx[3], "<$dx[4]" ;
176 }
177
178 #
179 # return all the spots from a day's file as an array of references
180 # the parameter passed is a julian day
181 sub readfile
182 {
183         my @spots;
184         
185         my $fh = $fp->open(@_); 
186         if ($fh) {
187                 my $in;
188                 while (<$fh>) {
189                         chomp;
190                         push @spots, [ split '\^' ];
191                 }
192         }
193         return @spots;
194 }
195 1;