try reverse compounds like T/FR5DX as well
[spider.git] / perl / Prefix.pm
index b9e235cdd5ad7c6e01c7633139963dfff90505de..66f3644e9333a1b5a17ad9a70cafcd30776a1ce0 100644 (file)
@@ -8,72 +8,84 @@
 
 package Prefix;
 
-use Carp;
+use IO::File;
 use DXVars;
 use DB_File;
 use Data::Dumper;
+use DXDebug;
 
 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);
 
-$db;     # the DB_File handle
-%prefix_loc;   # the meat of the info
-%pre;       # the prefix list
+$db = undef;                                   # the DB_File handle
+%prefix_loc = ();                              # the meat of the info
+%pre = ();                                             # the prefix list
 
 sub load
 {
-  if ($db) {
-    untie %pre;
-       %pre = ();
-       %prefix_loc = ();
-  }
-  $db = tie(%pre, "DB_File", undef, O_RDWR|O_CREAT, 0666, $DB_BTREE) or confess "can't tie \%pre ($!)";  
-  confess $@ if $@;
-  do "$main::data/prefix_data.pl";
-#  print Data::Dumper->Dump([\%pre, \%prefix_loc], [qw(pre prefix_loc)]);
+       if ($db) {
+               undef $db;
+               untie %pre;
+               %pre = ();
+               %prefix_loc = ();
+       }
+       $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;
 }
 
 sub store
 {
-  my ($k, $l);
-  my $fh = new FileHandle;
-  my $fn = "$main::data/prefix_data.pl";
+       my ($k, $l);
+       my $fh = new IO::File;
+       my $fn = "$main::data/prefix_data.pl";
   
-  confess "Prefix system not started" if !$db;
+       confess "Prefix system not started" if !$db;
   
-  # save versions!
-  rename "$fn.oooo", "$fn.ooooo" if -e "$fn.oooo";
-  rename "$fn.ooo", "$fn.oooo" if -e "$fn.ooo";
-  rename "$fn.oo", "$fn.ooo" if -e "$fn.oo";
-  rename "$fn.o", "$fn.oo" if -e "$fn.o";
-  rename "$fn", "$fn.o" if -e "$fn";
+       # save versions!
+       rename "$fn.oooo", "$fn.ooooo" if -e "$fn.oooo";
+       rename "$fn.ooo", "$fn.oooo" if -e "$fn.ooo";
+       rename "$fn.oo", "$fn.ooo" if -e "$fn.oo";
+       rename "$fn.o", "$fn.oo" if -e "$fn.o";
+       rename "$fn", "$fn.o" if -e "$fn";
   
-  $fh->open(">$fn") or die "Can't open $fn ($!)";
-
-  # prefix location data
-  $fh->print("%prefix_loc = (\n");
-  foreach $l (sort {$a <=> $b} keys %prefix_loc) {
-    my $r = $prefix_loc{$l};
-       $fh->printf("   $l => bless( { name => '%s', dxcc => %d, itu => %d, utcoff => %d, lat => %f, long => %f }, 'Prefix'),\n",
-                   $r->{name}, $r->{dxcc}, $r->{itu}, $r->{cq}, $r->{utcoff}, $r->{lat}, $r->{long});
-  }
-  $fh->print(");\n\n");
-
-  # prefix data
-  $fh->print("%pre = (\n");
-  foreach $k (sort keys %pre) {
-    $fh->print("   '$k' => [");
-       my @list = @{$pre{$k}};
-       my $l;
-       my $str;
-       foreach $l (@list) {
-      $str .= " $l,";
-    }
-       chop $str;  
-       $fh->print("$str ],\n");
-  }
-  $fh->print(");\n");
-  $fh->close;
+       $fh->open(">$fn") or die "Can't open $fn ($!)";
+
+       # prefix location data
+       $fh->print("%prefix_loc = (\n");
+       foreach $l (sort {$a <=> $b} keys %prefix_loc) {
+               my $r = $prefix_loc{$l};
+               $fh->printf("   $l => bless( { name => '%s', dxcc => %d, itu => %d, utcoff => %d, lat => %f, long => %f }, 'Prefix'),\n",
+                                       $r->{name}, $r->{dxcc}, $r->{itu}, $r->{cq}, $r->{utcoff}, $r->{lat}, $r->{long});
+       }
+       $fh->print(");\n\n");
+
+       # prefix data
+       $fh->print("%pre = (\n");
+       foreach $k (sort keys %pre) {
+               $fh->print("   '$k' => [");
+               my @list = @{$pre{$k}};
+               my $l;
+               my $str;
+               foreach $l (@list) {
+                       $str .= " $l,";
+               }
+               chop $str;  
+               $fh->print("$str ],\n");
+       }
+       $fh->print(");\n");
+       undef $fh;
+       untie %pre; 
 }
 
 # what you get is a list that looks like:-
@@ -85,18 +97,18 @@ sub store
 #
 sub get
 {
-  my $key = shift;
-  my @out;
-  my @outref;
-  my $ref;
-  my $gotkey;
+       my $key = shift;
+       my @out;
+       my @outref;
+       my $ref;
+       my $gotkey;
   
-  $gotkey = $key;
-  return () if $db->seq($gotkey, $ref, R_CURSOR);
-  return () if $key ne substr $gotkey, 0, length $key;
+       $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);
+       @outref = map { $prefix_loc{$_} } split ',', $ref;
+       return ($gotkey, @outref);
 }
 
 #
@@ -105,17 +117,17 @@ sub get
 # 
 sub next
 {
-  my $key = shift;
-  my @out;
-  my @outref;
-  my $ref;
-  my $gotkey;
+       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;
+       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);
+       @outref = map { $prefix_loc{$_} } split ',', $ref;
+       return ($gotkey, @outref);
 }
 
 #
@@ -128,75 +140,151 @@ sub next
 
 sub extract
 {
-  my $call = uc shift;
-  my @out;
-  my @nout;
-  my $p;
-  my @parts;
-  my ($sp, $i);
-  
-  # first check if the whole thing succeeds
-  @out = get($call);
-  return @out if @out > 0 && $out[0] eq $call;
+       my $calls = uc shift;
+       my @out;
+       my $p;
+       my @parts;
+       my ($call, $sp, $i);
   
-  # now split the call into parts if required
-  @parts = ($call =~ '/') ? split('/', $call) : ($call);
-
-  # remove any /0-9 /P /A /M /MM /AM suffixes etc
-  if (@parts > 1) {
-    $p = $parts[$#parts];
-       pop @parts if $p =~ /^\d+|[PABM]|AM|MM|BCN|SIX$/o;
-    $p = $parts[$#parts];
-       pop @parts if $p =~ /^\d+|[PABM]|AM|MM|BCN|SIX$/o;
+       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;
+                       next;
+               }
+
+               # now split the call into parts if required
+               @parts = ($call =~ '/') ? split('/', $call) : ($call);
+
+               # 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;
+         
+                       # 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;
+                                       next;
+                               }
+                       }
+               }
   
-    # can we resolve them by direct lookup
-       foreach $p (@parts) {
-      @out = get($p);
-         return @out if @out > 0 && $out[0] eq $call;
+               # which is the shortest part (first if equal)?
+               dbg("Parts: $call = " . join(' ', @parts))      if isdbg('prefix');
+               
+               # try ALL the parts
+        my @checked;
+               my $n;
+L1:            for ($n = 0; $n < @parts; $n++) {
+                       my $sp = '';
+                       my ($k, $i);
+                       for ($i = $k = 0; $i < @parts; $i++) {
+                               next if $checked[$i];
+                               my $p = $parts[$i];
+                               if (!$sp || length $p < length $sp) {
+                                       dbg("try part: $p") if isdbg('prefix');
+                                       $k = $i;
+                                       $sp = $p;
+                               }
+                       }
+                       $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;
+                                               }
+                                       } else {
+                                               push @out, @wout;
+                                       }
+                                       last L1;
+                               }
+                       }
+               }
        }
-  }
-  
-  # which is the shortest part (first if equal)?
-  $sp = $parts[0];
-  foreach $p (@parts) {
-    $sp = $p if length $sp > length $p;
-  }
-  # now start to resolve it from the left hand end
-  for (@out = (), $i = 1; $i <= length $sp; ++$i) {
-    @nout = get(substr($sp, 0, $i));
-       last if @nout > 0 && $nout[0] gt $sp;
-       last if @nout == 0;
-       @out = @nout;
-  }
-  
-  # not found
-  return (@out > 0) ? @out : ();
+       if (isdbg('prefix')) {
+               my $dd = new Data::Dumper([ \@out ], [qw(@out)]);
+               dbg($dd->Dumpxs);
+       }
+       return @out;
 }
 
 my %valid = (
-  lat => '0,Latitude,slat',
-  long => '0,Longitude,slong',
-  dxcc => '0,DXCC',
-  name => '0,Name',
-  itu => '0,ITU',
-  cq => '0,CQ',
-  utcoff => '0,UTC offset',
-);
+                        lat => '0,Latitude,slat',
+                        long => '0,Longitude,slong',
+                        dxcc => '0,DXCC',
+                        name => '0,Name',
+                        itu => '0,ITU',
+                        cq => '0,CQ',
+                        utcoff => '0,UTC offset',
+                        cont => '0,Continent',
+                       );
 
 no strict;
 sub AUTOLOAD
 {
-  my $self = shift;
-  my $name = $AUTOLOAD;
+       my $self = shift;
+       my $name = $AUTOLOAD;
   
-  return if $name =~ /::DESTROY$/;
-  $name =~ s/.*:://o;
+       return if $name =~ /::DESTROY$/;
+       $name =~ s/.*:://o;
   
-  confess "Non-existant field '$AUTOLOAD'" if !$valid{$name};
-  if (@_) {
-    $self->{$name} = shift;
-  }
-  return $self->{$name};
+       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};
 }
 use strict;
 
@@ -206,8 +294,8 @@ use strict;
 
 sub field_prompt
 { 
-  my ($self, $ele) = @_;
-  return $valid{$ele};
+       my ($self, $ele) = @_;
+       return $valid{$ele};
 }
 1;