fix prefix error
[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                 push @out, @nout if @nout;
153                 next if @nout > 0 && $nout[0] eq $call;
154           
155                 # now split the call into parts if required
156                 @parts = ($call =~ '/') ? split('/', $call) : ($call);
157
158                 # remove any /0-9 /P /A /M /MM /AM suffixes etc
159                 if (@parts > 1) {
160                         $p = $parts[0];
161                         shift @parts if $p =~ /^(WEB|NET)$/o;
162                         $p = $parts[$#parts];
163                         pop @parts if $p =~ /^(\d+|[JPABM]|AM|MM|BCN|JOTA|SIX|WEB|NET|Q\w+)$/o;
164                         $p = $parts[$#parts];
165                         pop @parts if $p =~ /^(\d+|[JPABM]|AM|MM|BCN|JOTA|SIX|WEB|NET|Q\w+)$/o;
166           
167                         # can we resolve them by direct lookup
168                         foreach $p (@parts) {
169                                 @nout = get($p);
170                                 push @out, @nout if @nout;
171                                 next if @nout > 0 && $nout[0] eq $call;
172                         }
173                 }
174   
175                 # which is the shortest part (first if equal)?
176                 dbg("Parts: $call = " . join('|', @parts))      if isdbg('prefix');
177                 $sp = $parts[0];
178                 foreach $p (@parts) {
179                         $sp = $p if length $p < length $sp;
180                 }
181                 $sp =~ s/-\d+$//;     # remove any SSID
182                 
183 #               # now start to resolve it from the left hand end
184 #               for ($i = 1; $i <= length $sp; ++$i) {
185                 # now start to resolve it from the right hand end
186                 for ($i = length $sp; $i >= 1; --$i) {
187                         my @wout = get(substr($sp, 0, $i));
188                         next if @wout > 0 && $wout[0] gt $sp;
189 #                       last if @wout == 0;
190                         push @out, @wout;
191                         last if @wout;
192                 }
193         }
194         if (isdbg('prefix')) {
195                 my $dd = new Data::Dumper([ \@out ], [qw(@out)]);
196                 dbg($dd->Dumpxs);
197         }
198         return @out;
199 }
200
201 my %valid = (
202                          lat => '0,Latitude,slat',
203                          long => '0,Longitude,slong',
204                          dxcc => '0,DXCC',
205                          name => '0,Name',
206                          itu => '0,ITU',
207                          cq => '0,CQ',
208                          utcoff => '0,UTC offset',
209                          cont => '0,Continent',
210                         );
211
212 no strict;
213 sub AUTOLOAD
214 {
215         my $self = shift;
216         my $name = $AUTOLOAD;
217   
218         return if $name =~ /::DESTROY$/;
219         $name =~ s/.*:://o;
220   
221         confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
222         # this clever line of code creates a subroutine which takes over from autoload
223         # from OO Perl - Conway
224         *{$AUTOLOAD} = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}} ;
225         if (@_) {
226                 $self->{$name} = shift;
227         }
228         return $self->{$name};
229 }
230 use strict;
231
232 #
233 # return a prompt for a field
234 #
235
236 sub field_prompt
237
238         my ($self, $ele) = @_;
239         return $valid{$ele};
240 }
241 1;
242
243 __END__