X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FPrefix.pm;h=36e9fa2a277d717373328fe652864a027107560a;hb=72936494cce7397ff1d08b246b4fd6a8b2c89a44;hp=66f3644e9333a1b5a17ad9a70cafcd30776a1ce0;hpb=7f1e45b77556de69d0f4b59fa470191f8499803b;p=spider.git diff --git a/perl/Prefix.pm b/perl/Prefix.pm index 66f3644e..36e9fa2a 100644 --- a/perl/Prefix.pm +++ b/perl/Prefix.pm @@ -3,7 +3,7 @@ # # Copyright (c) - Dirk Koopman G1TLH # -# $Id$ +# # package Prefix; @@ -13,35 +13,80 @@ use DXVars; use DB_File; use Data::Dumper; use DXDebug; +use DXUtil; +use USDB; +use LRU; use strict; -use vars qw($VERSION $BRANCH); -$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ ); -$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0; -$main::build += $VERSION; -$main::branch += $BRANCH; - -use vars qw($db %prefix_loc %pre); +use vars qw($db %prefix_loc %pre $lru $lrusize $misses $hits $matchtotal); $db = undef; # the DB_File handle %prefix_loc = (); # the meat of the info %pre = (); # the prefix list +$hits = $misses = $matchtotal = 1; # cache stats +$lrusize = 1000; # size of prefix LRU cache + +sub init +{ + my $r = load(); + return $r if $r; + + # fix up the node's default country codes + unless (@main::my_cc) { + push @main::my_cc, (61..67) if $main::mycall =~ /^GB/; + push @main::my_cc, qw(EA EA6 EA8 EA9) if $main::mycall =~ /^E[ABCD]/; + push @main::my_cc, qw(I IT IS) if $main::mycall =~ /^I/; + push @main::my_cc, qw(SV SV5 SV9) if $main::mycall =~ /^SV/; + + # catchall + push @main::my_cc, $main::mycall unless @main::my_cc; + } + + my @c; + for (@main::my_cc) { + if (/^\d+$/) { + push @c, $_; + } else { + my @dxcc = extract($_); + push @c, $dxcc[1]->dxcc if @dxcc > 1; + } + } + return "\@main::my_cc does not contain a valid prefix or callsign (" . join(',', @main::my_cc) . ")" unless @c; + @main::my_cc = @c; + return undef; +} sub load { + # untie every thing if ($db) { undef $db; untie %pre; %pre = (); %prefix_loc = (); + $lru->close if $lru; + undef $lru; } - $db = tie(%pre, "DB_File", undef, O_RDWR|O_CREAT, 0666, $DB_BTREE) or confess "can't tie \%pre ($!)"; - my $out = $@ if $@; - do "$main::data/prefix_data.pl" if !$out; - $out = $@ if $@; - # print Data::Dumper->Dump([\%pre, \%prefix_loc], [qw(pre prefix_loc)]); - return $out; + + # tie the main prefix database + eval {$db = tie(%pre, "DB_File", undef, O_RDWR|O_CREAT, 0664, $DB_BTREE);}; + my $out = "$@($!)" if !$db || $@ ; + if (-e "$main::data/wpxloc.dat") { + $out .= load_wpxloc_dat("$main::data/wpxloc.dat"); + $out .= load_wpxloc_dat("$main::data/local_wpxloc.dat"); + } else { + eval {do "$main::data/prefix_data.pl" if !$out; }; + $out .= $@ if $@; + } + $lru = LRU->newbase('Prefix', $lrusize); + + return $out; +} + +sub loaded +{ + return $db; } sub store @@ -95,20 +140,16 @@ sub store # This routine will only do what you ask for, if you wish to be intelligent # then that is YOUR problem! # + sub get { my $key = shift; - my @out; - my @outref; my $ref; - my $gotkey; - - $gotkey = $key; + my $gotkey = $key; return () if $db->seq($gotkey, $ref, R_CURSOR); return () if $key ne substr $gotkey, 0, length $key; - @outref = map { $prefix_loc{$_} } split ',', $ref; - return ($gotkey, @outref); + return ($gotkey, map { $prefix_loc{$_} } split ',', $ref); } # @@ -118,16 +159,77 @@ sub get sub next { my $key = shift; - my @out; - my @outref; my $ref; my $gotkey; return () if $db->seq($gotkey, $ref, R_NEXT); return () if $key ne substr $gotkey, 0, length $key; - @outref = map { $prefix_loc{$_} } split ',', $ref; - return ($gotkey, @outref); + return ($gotkey, map { $prefix_loc{$_} } split ',', $ref); +} + +# +# put the key LRU incluing the city state info +# + +sub lru_put +{ + my ($call, $ref) = @_; + my @s = USDB::get($call); + + if (@s) { + # this is deep magic, because this is a reference to static data, it + # must be copied. + my $h = { %{$ref->[1]} }; + bless $h, ref $ref->[1]; + $h->{city} = $s[0]; + $h->{state} = $s[1]; + $ref->[1] = $h; + } else { + $ref->[1]->{city} = $ref->[1]->{state} = "" unless exists $ref->[1]->{state}; + } + + dbg("Prefix::lru_put $call -> ($ref->[1]->{city}, $ref->[1]->{state})") if isdbg('prefix'); + $lru->put($call, $ref); +} + +# +# search for the nearest match of a prefix string (starting +# from the RH end of the string passed) +# + +sub matchprefix +{ + my $pref = shift; + my @partials; + + for (my $i = length $pref; $i; $i--) { + $matchtotal++; + my $s = substr($pref, 0, $i); + push @partials, $s; + my $p = $lru->get($s); + if ($p) { + $hits++; + if (isdbg('prefix')) { + my $percent = sprintf "%.1f", $hits * 100 / $misses; + dbg("Partial Prefix Cache Hit: $s Hits: $hits/$misses of $matchtotal = $percent\%"); + } + lru_put($_, $p) for @partials; + return @$p; + } else { + $misses++; + my @out = get($s); + if (isdbg('prefix')) { + my $part = $out[0] || "*"; + $part .= '*' unless $part eq '*' || $part eq $s; + dbg("Partial prefix: $pref $s $part" ); + } + if (@out && $out[0] eq $s) { + return @out; + } + } + } + return (); } # @@ -145,42 +247,124 @@ sub extract my $p; my @parts; my ($call, $sp, $i); - - foreach $call (split /,/, $calls) { - # first check if the whole thing succeeds - my @nout = get($call); - if (@nout && $nout[0] eq $call) { - dbg("got exact prefix: $nout[0]") if isdbg('prefix'); - push @out, @nout; + +LM: foreach $call (split /,/, $calls) { + + # first check if the whole thing succeeds either because it is cached + # or because it simply is a stored prefix as callsign (or even a prefix) + $matchtotal++; + $call =~ s/-\d+$//; # ignore SSIDs + my $p = $lru->get($call); + my @nout; + if ($p) { + $hits++; + if (isdbg('prefix')) { + my $percent = sprintf "%.1f", $hits * 100 / $misses; + dbg("Prefix Cache Hit: $call Hits: $hits/$misses of $matchtotal = $percent\%"); + } + push @out, @$p; next; + } else { + + # is it in the USDB, force a matchprefix to match? + my @s = USDB::get($call); + if (@s) { + @nout = get($call); + @nout = matchprefix($call) unless @nout; + $nout[0] = $call if @nout; + } else { + @nout = get($call); + } + + # now store it + if (@nout && $nout[0] eq $call) { + $misses++; + lru_put($call, \@nout); + dbg("got exact prefix: $nout[0]") if isdbg('prefix'); + push @out, @nout; + next; + } } # now split the call into parts if required @parts = ($call =~ '/') ? split('/', $call) : ($call); + dbg("Parts: $call = " . join(' ', @parts)) if isdbg('prefix'); # remove any /0-9 /P /A /M /MM /AM suffixes etc if (@parts > 1) { - $p = $parts[0]; - shift @parts if $p =~ /^(WEB|NET)$/o; - $p = $parts[$#parts]; - pop @parts if $p =~ /^(\d+|[JPABM]|AM|MM|BCN|JOTA|SIX|WEB|NET|Q\w+)$/o; - $p = $parts[$#parts]; - pop @parts if $p =~ /^(\d+|[JPABM]|AM|MM|BCN|JOTA|SIX|WEB|NET|Q\w+)$/o; - + @parts = grep { !/^\d+$/ && !/^[PABM]$/ && !/^(?:|AM|MM|BCN|JOTA|SIX|WEB|NET|Q\w+)$/; } @parts; + # can we resolve them by direct lookup - foreach $p (@parts) { - @nout = get($p); - if (@nout && $nout[0] eq $call) { - dbg("got exact prefix: $nout[0]") if isdbg('prefix'); - push @out, @nout; + my $s = join('/', @parts); + @nout = get($s); + if (@nout && $nout[0] eq $s) { + dbg("got exact multipart prefix: $call $s") if isdbg('prefix'); + $misses++; + lru_put($call, \@nout); + push @out, @nout; + next; + } + } + dbg("Parts now: $call = " . join(' ', @parts)) if isdbg('prefix'); + + # at this point we should have two or three parts + # if it is three parts then join the first and last parts together + # to get an answer + + # first deal with prefix/x00xx/single letter things + if (@parts == 3 && length $parts[0] <= length $parts[1]) { + @nout = matchprefix($parts[0]); + if (@nout) { + my $s = join('/', $nout[0], $parts[2]); + my @try = get($s); + if (@try && $try[0] eq $s) { + dbg("got 3 part prefix: $call $s") if isdbg('prefix'); + $misses++; + lru_put($call, \@try); + push @out, @try; next; } + + # if the second part is a callsign and the last part is one letter + if (is_callsign($parts[1]) && length $parts[2] == 1) { + pop @parts; + } } } - - # which is the shortest part (first if equal)? - dbg("Parts: $call = " . join(' ', @parts)) if isdbg('prefix'); - + + # if it is a two parter + if (@parts == 2) { + + # try it as it is as compound, taking the first part as the prefix + @nout = matchprefix($parts[0]); + if (@nout) { + my $s = join('/', $nout[0], $parts[1]); + my @try = get($s); + if (@try && $try[0] eq $s) { + dbg("got 2 part prefix: $call $s") if isdbg('prefix'); + $misses++; + lru_put($call, \@try); + push @out, @try; + next; + } + } + } + + # remove the problematic /J suffix + pop @parts if @parts > 1 && $parts[$#parts] eq 'J'; + + # single parter + if (@parts == 1) { + @nout = matchprefix($parts[0]); + if (@nout) { + dbg("got prefix: $call = $nout[0]") if isdbg('prefix'); + $misses++; + lru_put($call, \@nout); + push @out, @nout; + next; + } + } + # try ALL the parts my @checked; my $n; @@ -199,64 +383,112 @@ L1: for ($n = 0; $n < @parts; $n++) { $checked[$k] = 1; $sp =~ s/-\d+$//; # remove any SSID - # # now start to resolve it from the left hand end - # for ($i = 1; $i <= length $sp; ++$i) { # now start to resolve it from the right hand end - for ($i = length $sp; $i >= 1; --$i) { - my $ssp = substr($sp, 0, $i); - my @wout = get($ssp); - if (isdbg('prefix')) { - my $part = $wout[0] || "*"; - $part .= '*' unless $part eq '*' || $part eq $ssp; - dbg("Partial prefix: $sp $ssp $part" ); - } - next if @wout > 0 && $wout[0] gt $ssp; - - # try and search for it in the descriptions as - # a whole callsign if it has multiple parts and the output - # is more two long, this should catch things like - # FR5DX/T without having to explicitly stick it into - # the prefix table. - - if (@wout) { - if (@parts > 1) { - $parts[$k] = $ssp; - my $try = join('/', @parts); - my @try = get($try); - if (isdbg('prefix')) { - my $part = $try[0] || "*"; - $part .= '*' unless $part eq '*' || $part eq $try; - dbg("Compound prefix: $try $part" ); - } - if (@try == 0) { - $try = join('/', reverse @parts); - @try = get($try); - if (isdbg('prefix')) { - my $part = $try[0] || "*"; - $part .= '*' unless $part eq '*' || $part eq $try; - dbg("Compound prefix: $try $part" ); - } - } - if (@try && $try eq $try[0]) { - push @out, @try; - } else { - push @out, @wout; - } + @nout = matchprefix($sp); + + # try and search for it in the descriptions as + # a whole callsign if it has multiple parts and the output + # is more two long, this should catch things like + # FR5DX/T without having to explicitly stick it into + # the prefix table. + + if (@nout) { + if (@parts > 1) { + $parts[$k] = $nout[0]; + my $try = join('/', @parts); + my @try = get($try); + if (isdbg('prefix')) { + my $part = $try[0] || "*"; + $part .= '*' unless $part eq '*' || $part eq $try; + dbg("Compound prefix: $try $part" ); + } + if (@try && $try eq $try[0]) { + $misses++; + lru_put($call, \@try); + push @out, @try; } else { - push @out, @wout; + $misses++; + lru_put($call, \@nout); + push @out, @nout; } - last L1; + } else { + $misses++; + lru_put($call, \@nout); + push @out, @nout; } + next LM; } } + + # we are a pirate! + @nout = matchprefix('Q'); + $misses++; + lru_put($call, \@nout); + push @out, @nout; } - if (isdbg('prefix')) { + + if (isdbg('prefixdata')) { my $dd = new Data::Dumper([ \@out ], [qw(@out)]); dbg($dd->Dumpxs); } return @out; } +# +# turn a list of prefixes / dxcc numbers into a list of dxcc/itu/zone numbers +# +# nc = dxcc +# ni = itu +# nz = zone +# ns = state +# + +sub to_ciz +{ + my $cmd = shift; + my @out; + + foreach my $v (@_) { + if ($cmd ne 'ns' && $v =~ /^\d+$/) { + push @out, $v unless grep $_ eq $v, @out; + } else { + if ($cmd eq 'ns' && $v =~ /^[A-Z][A-Z]$/i) { + push @out, uc $v unless grep $_ eq uc $v, @out; + } else { + my @pre = Prefix::extract($v); + if (@pre) { + shift @pre; + foreach my $p (@pre) { + my $n = $p->dxcc if $cmd eq 'nc' ; + $n = $p->itu if $cmd eq 'ni' ; + $n = $p->cq if $cmd eq 'nz' ; + $n = $p->state if $cmd eq 'ns'; + push @out, $n unless grep $_ eq $n, @out; + } + } + } + } + } + return @out; +} + +# get the full country data (dxcc, itu, cq, state, city) as a list +# from a callsign. +sub cty_data +{ + my $call = shift; + + my @dxcc = extract($call); + if (@dxcc) { + my $state = $dxcc[1]->state || ''; + my $city = $dxcc[1]->city || ''; + my $name = $dxcc[1]->name || ''; + + return ($dxcc[1]->dxcc, $dxcc[1]->itu, $dxcc[1]->cq, $state, $city, $name); + } + return (666,0,0,'','','Pirate-Country-QQ'); +} + my %valid = ( lat => '0,Latitude,slat', long => '0,Longitude,slong', @@ -264,29 +496,26 @@ my %valid = ( name => '0,Name', itu => '0,ITU', cq => '0,CQ', + state => '0,State', + city => '0,City', utcoff => '0,UTC offset', cont => '0,Continent', ); -no strict; sub AUTOLOAD { - my $self = shift; + no strict; my $name = $AUTOLOAD; return if $name =~ /::DESTROY$/; - $name =~ s/.*:://o; + $name =~ s/^.*:://o; confess "Non-existant field '$AUTOLOAD'" if !$valid{$name}; # this clever line of code creates a subroutine which takes over from autoload # from OO Perl - Conway - *{$AUTOLOAD} = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}} ; - if (@_) { - $self->{$name} = shift; - } - return $self->{$name}; + *$AUTOLOAD = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}} ; + goto &$AUTOLOAD; } -use strict; # # return a prompt for a field @@ -297,6 +526,99 @@ sub field_prompt my ($self, $ele) = @_; return $valid{$ele}; } + +sub load_wpxloc_dat +{ + my $fn = shift; + my $out; + my $id = 0; + my $line = 0; + + return unless -e $fn; + + my $in = IO::File->new("$fn"); + $out = "error opening $fn $!", return $out unless $in; + while (<$in>) { + my $ignore = 0; + $line++; + + next if /^\s*[!#]/; + next if /^\s*$/; + s/\s+$//; + + my @f = split; + + # The format of wpxloc.dat is:- + # 1S Spratly-Islands-1S 269 AS 50 26 8.00 9 53 N 114 14 E + # & 1S,9M0,BV9S,=9M6US/0,=DU0K + # & .... can repeat ad nausium + + unless ($f[0] eq '&') { + # main location definition and 'official' canonical prefix/tag for this locality + # NOTE: we assume that the file is nominally correct and that any alterations + # will overwrite existing entries + # + # The order is: prefix, description, country-no, continent, itu, cq, utc-offset + # lat degrees, lat minutes, lat N/S, long degrees, long minutes, + # long E/W + + if (@f != 13) { + $out .= "wrong no of items for locality on line $line\n"; + $ignore++; + next; + } + + $ignore = 0; + + my $e = bless {}, 'Prefix'; + $id++; + + $e->{name} = $f[1]; + $e->{dxcc} = $f[2]; + $e->{cont} = $f[3]; + $e->{itu} = $f[4]; + $e->{cq} = $f[5]; + $e->{utcoff} = $f[6]; + $e->{lat} = $f[7] + ($f[8] / 60); + $e->{lat} = -$e->{lat} if $f[9] eq 'S'; + $e->{long} = $f[10] + ($f[11] / 60); + $e->{long} = -$e->{long} if $f[12] eq 'W'; + $prefix_loc{$id} = $e; + $pre{"$f[0]"} = $id; + +# print "line $line, $f[0]\n"; + + } else { + # additional prefixes and full callsigns (indicated with an prefix of '=') + + next if $ignore; + + shift @f; + foreach my $gob (@f) { + my @ent = split /\s*,\s*/, $gob; + foreach my $ent (@ent) { + $ent =~ s/^\*//; + my $ref = $pre{$ent}; + if ($ref) { + my @id = split /,/, $ref; + push @id, $id unless grep {$id == $_} @id; + $pre{$ent} = join ',', @id; + } else { + $pre{$ent} = $id; + } + } + } + } + } + $in->close; + + open POUT, ">/tmp/prefix_data"; + print POUT Data::Dumper->Dump([\%prefix_loc, \%pre], [qw(%prefix_loc %pre)]); + close POUT; + + return $out; +} + 1; __END__