fix the japanese problem resolving JA callsigns
[spider.git] / perl / Prefix.pm
1 #
2 # prefix handling
3 #
4 # Copyright (c) - Dirk Koopman G1TLH
5 #
6 # $Id$
7 #
8
9 package Prefix;
10
11 use IO::File;
12 use DXVars;
13 use DB_File;
14 use Data::Dumper;
15 use DXDebug;
16
17 use strict;
18
19 use vars qw($VERSION $BRANCH);
20 $VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
21 $BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0;
22 $main::build += $VERSION;
23 $main::branch += $BRANCH;
24
25 use vars qw($db  %prefix_loc %pre);
26
27 $db = undef;                                    # the DB_File handle
28 %prefix_loc = ();                               # the meat of the info
29 %pre = ();                                              # the prefix list
30
31 sub load
32 {
33         if ($db) {
34                 undef $db;
35                 untie %pre;
36                 %pre = ();
37                 %prefix_loc = ();
38         }
39         $db = tie(%pre, "DB_File", undef, O_RDWR|O_CREAT, 0666, $DB_BTREE) or confess "can't tie \%pre ($!)";  
40         my $out = $@ if $@;
41         do "$main::data/prefix_data.pl" if !$out;
42         $out = $@ if $@;
43         #  print Data::Dumper->Dump([\%pre, \%prefix_loc], [qw(pre prefix_loc)]);
44         return $out;
45 }
46
47 sub store
48 {
49         my ($k, $l);
50         my $fh = new IO::File;
51         my $fn = "$main::data/prefix_data.pl";
52   
53         confess "Prefix system not started" if !$db;
54   
55         # save versions!
56         rename "$fn.oooo", "$fn.ooooo" if -e "$fn.oooo";
57         rename "$fn.ooo", "$fn.oooo" if -e "$fn.ooo";
58         rename "$fn.oo", "$fn.ooo" if -e "$fn.oo";
59         rename "$fn.o", "$fn.oo" if -e "$fn.o";
60         rename "$fn", "$fn.o" if -e "$fn";
61   
62         $fh->open(">$fn") or die "Can't open $fn ($!)";
63
64         # prefix location data
65         $fh->print("%prefix_loc = (\n");
66         foreach $l (sort {$a <=> $b} keys %prefix_loc) {
67                 my $r = $prefix_loc{$l};
68                 $fh->printf("   $l => bless( { name => '%s', dxcc => %d, itu => %d, utcoff => %d, lat => %f, long => %f }, 'Prefix'),\n",
69                                         $r->{name}, $r->{dxcc}, $r->{itu}, $r->{cq}, $r->{utcoff}, $r->{lat}, $r->{long});
70         }
71         $fh->print(");\n\n");
72
73         # prefix data
74         $fh->print("%pre = (\n");
75         foreach $k (sort keys %pre) {
76                 $fh->print("   '$k' => [");
77                 my @list = @{$pre{$k}};
78                 my $l;
79                 my $str;
80                 foreach $l (@list) {
81                         $str .= " $l,";
82                 }
83                 chop $str;  
84                 $fh->print("$str ],\n");
85         }
86         $fh->print(");\n");
87         undef $fh;
88         untie %pre; 
89 }
90
91 # what you get is a list that looks like:-
92
93 # prefix => @list of blessed references to prefix_locs 
94 #
95 # This routine will only do what you ask for, if you wish to be intelligent
96 # then that is YOUR problem!
97 #
98 sub get
99 {
100         my $key = shift;
101         my @out;
102         my @outref;
103         my $ref;
104         my $gotkey;
105   
106         $gotkey = $key;
107         return () if $db->seq($gotkey, $ref, R_CURSOR);
108         return () if $key ne substr $gotkey, 0, length $key;
109
110         @outref = map { $prefix_loc{$_} } split ',', $ref;
111         return ($gotkey, @outref);
112 }
113
114 #
115 # get the next key that matches, this assumes that you have done a 'get' first
116 #
117
118 sub next
119 {
120         my $key = shift;
121         my @out;
122         my @outref;
123         my $ref;
124         my $gotkey;
125   
126         return () if $db->seq($gotkey, $ref, R_NEXT);
127         return () if $key ne substr $gotkey, 0, length $key;
128   
129         @outref = map { $prefix_loc{$_} } split ',', $ref;
130         return ($gotkey, @outref);
131 }
132
133 #
134 # extract a 'prefix' from a callsign, in other words the largest entity that will
135 # obtain a result from the prefix table.
136 #
137 # This is done by repeated probing, callsigns of the type VO1/G1TLH or
138 # G1TLH/VO1 (should) return VO1
139 #
140
141 sub extract
142 {
143         my $calls = uc shift;
144         my @out;
145         my $p;
146         my @parts;
147         my ($call, $sp, $i);
148   
149         foreach $call (split /,/, $calls) {
150                 # first check if the whole thing succeeds
151                 my @nout = get($call);
152                 if (@nout && $nout[0] eq $call) {
153                         dbg("got exact prefix: $nout[0]") if isdbg('prefix');
154                         push @out, @nout;
155                         next;
156                 }
157
158                 # now split the call into parts if required
159                 @parts = ($call =~ '/') ? split('/', $call) : ($call);
160
161                 # remove any /0-9 /P /A /M /MM /AM suffixes etc
162                 if (@parts > 1) {
163                         $p = $parts[0];
164                         shift @parts if $p =~ /^(WEB|NET)$/o;
165                         $p = $parts[$#parts];
166                         pop @parts if $p =~ /^(\d+|[JPABM]|AM|MM|BCN|JOTA|SIX|WEB|NET|Q\w+)$/o;
167                         $p = $parts[$#parts];
168                         pop @parts if $p =~ /^(\d+|[JPABM]|AM|MM|BCN|JOTA|SIX|WEB|NET|Q\w+)$/o;
169           
170                         # can we resolve them by direct lookup
171                         foreach $p (@parts) {
172                                 @nout = get($p);
173                                 if (@nout && $nout[0] eq $call) {
174                                         dbg("got exact prefix: $nout[0]") if isdbg('prefix');
175                                         push @out, @nout;
176                                         next;
177                                 }
178                         }
179                 }
180   
181                 # which is the shortest part (first if equal)?
182                 dbg("Parts: $call = " . join('|', @parts))      if isdbg('prefix');
183                 $sp = $parts[0];
184                 foreach $p (@parts) {
185                         $sp = $p if length $p < length $sp;
186                 }
187                 $sp =~ s/-\d+$//;     # remove any SSID
188                 
189 #               # now start to resolve it from the left hand end
190 #               for ($i = 1; $i <= length $sp; ++$i) {
191                 # now start to resolve it from the right hand end
192                 for ($i = length $sp; $i >= 1; --$i) {
193                         my $ssp = substr($sp, 0, $i);
194                         my @wout = get($ssp);
195                         dbg("Partial prefix: $sp $ssp $wout[0]" ) if isdbg('prefix') && $wout[0];
196                         next if @wout > 0 && $wout[0] gt $ssp;
197 #                       last if @wout == 0;
198                         push @out, @wout;
199                         last if @wout;
200                 }
201         }
202         if (isdbg('prefix')) {
203                 my $dd = new Data::Dumper([ \@out ], [qw(@out)]);
204                 dbg($dd->Dumpxs);
205         }
206         return @out;
207 }
208
209 my %valid = (
210                          lat => '0,Latitude,slat',
211                          long => '0,Longitude,slong',
212                          dxcc => '0,DXCC',
213                          name => '0,Name',
214                          itu => '0,ITU',
215                          cq => '0,CQ',
216                          utcoff => '0,UTC offset',
217                          cont => '0,Continent',
218                         );
219
220 no strict;
221 sub AUTOLOAD
222 {
223         my $self = shift;
224         my $name = $AUTOLOAD;
225   
226         return if $name =~ /::DESTROY$/;
227         $name =~ s/.*:://o;
228   
229         confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
230         # this clever line of code creates a subroutine which takes over from autoload
231         # from OO Perl - Conway
232         *{$AUTOLOAD} = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}} ;
233         if (@_) {
234                 $self->{$name} = shift;
235         }
236         return $self->{$name};
237 }
238 use strict;
239
240 #
241 # return a prompt for a field
242 #
243
244 sub field_prompt
245
246         my ($self, $ele) = @_;
247         return $valid{$ele};
248 }
249 1;
250
251 __END__