X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FRoute.pm;h=b6671154186afb71a943be119a739c16cf71c4eb;hb=eb631a639a657f071f4711f6f4f5c585ab6364c6;hp=6a4f96f60c6f9101e7dd6cae66f0b8d42b7ce1ee;hpb=2b58ccdf81685a1167a43c38705a0d84b9d8d661;p=spider.git diff --git a/perl/Route.pm b/perl/Route.pm index 6a4f96f6..b6671154 100644 --- a/perl/Route.pm +++ b/perl/Route.pm @@ -23,7 +23,7 @@ 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; +$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ || (0,0)); $main::build += $VERSION; $main::branch += $BRANCH; @@ -35,18 +35,28 @@ use vars qw(%list %valid $filterdef); dxcc => '0,Country Code', itu => '0,ITU Zone', cq => '0,CQ Zone', + state => '0,State', + city => '0,City', + lastseen => '0,Last Seen,atime', ); $filterdef = bless ([ # tag, sort, field, priv, special parser ['channel', 'c', 0], - ['channel_dxcc', 'n', 1], - ['channel_itu', 'n', 2], - ['channel_zone', 'n', 3], + ['channel_dxcc', 'nc', 1], + ['channel_itu', 'ni', 2], + ['channel_zone', 'nz', 3], ['call', 'c', 4], - ['call_dxcc', 'n', 5], - ['call_itu', 'n', 6], - ['call_zone', 'n', 7], + ['by', 'c', 4], + ['call_dxcc', 'nc', 5], + ['by_dxcc', 'nc', 5], + ['call_itu', 'ni', 6], + ['by_itu', 'ni', 6], + ['call_zone', 'nz', 7], + ['by_zone', 'nz', 7], + ['channel_state', 'ns', 8], + ['call_state', 'ns', 9], + ['by_state', 'ns', 9], ], 'Filter::Cmd'); @@ -59,12 +69,9 @@ sub new dbg("create $pkg with $call") if isdbg('routelow'); # add in all the dxcc, itu, zone info - my @dxcc = Prefix::extract($call); - if (@dxcc > 0) { - $self->{dxcc} = $dxcc[1]->dxcc; - $self->{itu} = $dxcc[1]->itu; - $self->{cq} = $dxcc[1]->cq; - } + ($self->{dxcc}, $self->{itu}, $self->{cq}, $self->{state}, $self->{city}) = + Prefix::cty_data($call); + $self->{flags} = here(1); return $self; @@ -92,28 +99,41 @@ sub _addlist { my $self = shift; my $field = shift; + my @out; foreach my $c (@_) { - my $call = _getcall($c); - unless (grep {$_ eq $call} @{$self->{$field}}) { + confess "Need a ref here" unless ref($c); + + my $call = $c->{call}; + unless (grep $_ eq $call, @{$self->{$field}}) { push @{$self->{$field}}, $call; dbg(ref($self) . " adding $call to " . $self->{call} . "->\{$field\}") if isdbg('routelow'); + push @out, $c; } } - return $self->{$field}; + return @out; } sub _dellist { my $self = shift; my $field = shift; + my @out; foreach my $c (@_) { - my $call = _getcall($c); - if (grep {$_ eq $call} @{$self->{$field}}) { + confess "Need a ref here" unless ref($c); + my $call = $c->{call}; + if (grep $_ eq $call, @{$self->{$field}}) { $self->{$field} = [ grep {$_ ne $call} @{$self->{$field}} ]; dbg(ref($self) . " deleting $call from " . $self->{call} . "->\{$field\}") if isdbg('routelow'); + push @out, $c; } } - return $self->{$field}; + return @out; +} + +sub is_empty +{ + my $self = shift; + return @{$self->{$_[0]}} == 0; } # @@ -132,7 +152,8 @@ sub here my $r = shift; return $self ? 2 : 0 unless ref $self; return ($self->{flags} & 2) ? 1 : 0 unless defined $r; - $self->{flags} = (($self->{flags} & ~2) | ($r ? 2 : 0)); + $self->{flags} &= ~2; + $self->{flags} |= $r ? 2 : 0; return $r ? 1 : 0; } @@ -142,14 +163,49 @@ sub conf my $r = shift; return $self ? 1 : 0 unless ref $self; return ($self->{flags} & 1) ? 1 : 0 unless defined $r; - $self->{flags} = (($self->{flags} & ~1) | ($r ? 1 : 0)); + $self->{flags} &= ~1; + $self->{flags} |= $r ? 1 : 0; return $r ? 1 : 0; } -sub parents +# +# pc59 entity encoding and decoding +# +sub enc_pc59 { my $self = shift; - return @{$self->{parent}}; + my $sort = shift || 'N'; + my $out = "$sort$self->{flag}$self->{call}"; + if ($self->{build}) { + $out .= "b$self->{build}"; + } elsif ($self->{version}) { + $out .= "v$self->{version}"; + } +} + +sub dec_pc59 +{ + my $node = shift; + my $s = ref($node) ? shift : $node; + $node = undef; + + my ($sort, $here, $call) = unpack "A A A*", $s; + return unless is_callsign($call); + return unless $here =~ /^[0123]$/; + return unless $sort =~ /^[NUE]$/; + if ($sort eq 'E' || $sort eq 'N') { + $node = Route::Node::get($call) || Route::Node->new($call); + if ($s =~ /b([\d\.])/) { + $node->{build} = $1; + } + if ($s =~ /v([\d\.])/) { + $node->{version} = $1; + } + } elsif ($sort eq 'U') { + $node = Route::User::get($call) || Route::User->new($call); + } + $node->flags = $here; + return $node; } # @@ -185,8 +241,8 @@ sub config # recursion detector if ((DXChannel->get($self->{call}) && $level > 1) || grep $self->{call} eq $_, @$seen) { - $line .= ' ...'; - push @out, $line; +# $line .= ' ...'; +# push @out, $line; return @out; } push @$seen, $self->{call}; @@ -255,20 +311,36 @@ sub get return Route::Node::get($call) || Route::User::get($call); } +sub get_all +{ + return (Route::Node::get_all(), Route::User::get_all()); +} + # find all the possible dxchannels which this object might be on sub alldxchan { my $self = shift; - my @dxchan; -# dbg("Trying node $self->{call}") if isdbg('routech'); + my $dxchan = DXChannel->get($self->{call}); - push @dxchan, $dxchan if $dxchan; + if ($dxchan) { + dbg("alldxchan for $self->{call} = $dxchan->{call}") if isdbg('routelow'); + return $dxchan if $dxchan; + } + + my @nodes; + if ($self->isa('Route::User')) { + push @nodes, map{Route::Node::get($_)} @{$self->{nodes}}; + } elsif ($self->isa('Route::Node')) { + push @nodes, $self; + } # it isn't, build up a list of dxchannels and possible ping times # for all the candidates. - unless (@dxchan) { - foreach my $p (@{$self->{parent}}) { -# dbg("Trying parent $p") if isdbg('routech'); + my @dxchan; + foreach my $nref (@nodes) { + next unless $nref; + foreach my $p (@{$nref->{dxchan}}) { +# dbg("Trying dxchan $p") if isdbg('routech'); next if $p eq $main::mycall; # the root my $dxchan = DXChannel->get($p); if ($dxchan) { @@ -281,28 +353,22 @@ sub alldxchan } } } -# dbg('routech', "Got dxchan: " . join(',', (map{ $_->call } @dxchan)) ); + dbg("alldxchan for $self->{call} = (" . join(',', @dxchan) . ")") if isdbg('routelow'); return @dxchan; } -sub dxchan +sub bestdxchan { my $self = shift; - my @dxchan = $self->alldxchan; + + # ALWAYS return the locally connected channel if present; + my $dxchan = DXChannel->get($self->call); + return $dxchan if $dxchan; + + my @dxchan = sort { ($a->pingave || 9999999) <=> ($b->pingave || 9999999) } $self->alldxchan; return undef unless @dxchan; - # determine the minimum ping channel - my $minping = 99999999; - my $dxchan; - foreach my $dxc (@dxchan) { - my $p = $dxc->pingave; - if (defined $p && $p < $minping) { - $minping = $p; - $dxchan = $dxc; - } - } - $dxchan = shift @dxchan unless $dxchan; - return $dxchan; + return shift @dxchan; } # @@ -349,17 +415,18 @@ sub field_prompt # 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}} ; - @_ ? $self->{$name} = shift : $self->{$name} ; + *{$AUTOLOAD} = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}}; + goto &$AUTOLOAD; + } 1;