2 # Node routing routines
4 # Copyright (c) 2001 Dirk Koopman G1TLH
18 use vars qw(%list %valid @ISA $max $filterdef $obscount);
22 parent => '0,Parent Calls,parray',
23 nodes => '0,Nodes,parray',
24 users => '0,Users,parray',
25 usercount => '0,User Count',
26 version => '0,Version',
28 handle_xml => '0,Using XML,yesno',
29 lastmsg => '0,Last Route Msg,atime',
30 lastid => '0,Last Route MsgID',
31 do_pc9x => '0,Uses pc9x,yesno',
32 via_pc92 => '0,Came in via pc92,yesno',
33 obscount => '0,Obscount',
34 last_PC92C => '9,Last PC92C',
35 PC92C_dxchan => '9,Channel of PC92C',
38 $filterdef = $Route::filterdef;
45 my $n = scalar (keys %list);
46 $max = $n if $n > $max;
57 # this routine handles the possible adding of an entry in the routing
58 # table. It will only add an entry if it is new. It may have all sorts of
59 # other side effects which may include fixing up other links.
61 # It will return a node object if (and only if) it is a completely new
62 # object with that callsign. The upper layers are expected to do something
65 # called as $parent->add(call, dxchan, version, flags)
72 confess "Route::add trying to add $call to myself" if $call eq $parent->{call};
73 my $self = get($call);
75 $self->_addparent($parent);
76 $parent->_addnode($self);
79 $self = $parent->new($call, @_);
80 $parent->_addnode($self);
85 # this routine is the opposite of 'add' above.
87 # It will return an object if (and only if) this 'del' will remove
88 # this object completely
96 # delete parent from this call's parent list
97 $pref->_delnode($self);
98 $self->_delparent($pref);
100 my $ncall = $self->{call};
102 # is this the last connection, I have no parents anymore?
103 unless (@{$self->{parent}}) {
104 foreach my $rcall (@{$self->{nodes}}) {
105 next if grep $rcall eq $_, @_;
106 my $r = Route::Node::get($rcall);
107 push @nodes, $r->del($self, $ncall, @_) if $r;
110 delete $list{$ncall};
116 # this deletes this node completely by grabbing the parents
117 # and deleting me from them, then deleting me from all the
123 my $ncall = $self->{call};
125 # get rid of users and parents
127 if (@{$self->{parent}}) {
128 foreach my $call (@{$self->{parent}}) {
129 my $parent = Route::Node::get($call);
130 push @out, $parent->del($self) if $parent;
133 # get rid of my nodes
134 push @out, $self->del_nodes;
135 # this only happens if we a orphan with no parents
138 delete $list{$ncall};
147 foreach my $rcall (@{$parent->{nodes}}) {
149 push @out, $r->del($parent, $parent->{call}, @_) if $r;
157 for (@{$self->{users}}) {
158 my $ref = Route::User::get($_);
159 $ref->del($self) if $ref;
164 # add a user to this node
170 confess "Trying to add NULL User call to routing tables" unless $ucall;
172 my $uref = Route::User::get($ucall);
175 @out = $uref->addparent($self);
177 $uref = Route::User->new($ucall, $self->{call}, @_);
180 $self->_adduser($uref);
181 $self->{usercount} = scalar @{$self->{users}};
186 # delete a user from this node
194 @out = $self->_deluser($ref);
197 confess "tried to delete non-existant $ref->{call} from $self->{call}";
199 $self->{usercount} = scalar @{$self->{users}};
206 if (@_ && @{$self->{users}} == 0) {
207 $self->{usercount} = shift;
209 return $self->{usercount};
215 return @{$self->{users}};
221 return @{$self->{nodes}};
227 return @{$self->{parent}};
234 foreach my $call (@{$self->{nodes}}) {
235 next if grep $call eq $_, @_;
238 push @out, $r->rnodes($call, @_) if $r;
243 # this takes in a list of node and user calls (not references) from
244 # a config type update for a node and returns
245 # the differences as lists of things that have gone away
246 # and things that have been added.
247 sub calc_config_changes
250 my %nodes = map {$_ => 1} @{$self->{nodes}};
251 my %users = map {$_ => 1} @{$self->{users}};
254 if (isdbg('route')) {
255 dbg("ROUTE: start calc_config_changes");
256 dbg("ROUTE: incoming nodes on $self->{call}: " . join(',', sort @$cnodes));
257 dbg("ROUTE: incoming users on $self->{call}: " . join(',', sort @$cusers));
258 dbg("ROUTE: existing nodes on $self->{call}: " . join(',', sort keys %nodes));
259 dbg("ROUTE: existing users on $self->{call}: " . join(',', sort keys %users));
261 my (@dnodes, @dusers, @nnodes, @nusers);
262 push @nnodes, map {my @r = $nodes{$_} ? () : $_; delete $nodes{$_}; @r} @$cnodes;
263 push @dnodes, keys %nodes;
264 push @nusers, map {my @r = $users{$_} ? () : $_; delete $users{$_}; @r} @$cusers;
265 push @dusers, keys %users;
266 if (isdbg('route')) {
267 dbg("ROUTE: deleted nodes on $self->{call}: " . join(',', sort @dnodes));
268 dbg("ROUTE: deleted users on $self->{call}: " . join(',', sort @dusers));
269 dbg("ROUTE: added nodes on $self->{call}: " . join(',', sort @nnodes));
270 dbg("ROUTE: added users on $self->{call}: " . join(',', sort @nusers));
271 dbg("ROUTE: end calc_config_changes");
273 return (\@dnodes, \@dusers, \@nnodes, \@nusers);
281 confess "already have $call in $pkg" if $list{$call};
283 my $self = $pkg->SUPER::new($call);
284 $self->{parent} = ref $pkg ? [ $pkg->{call} ] : [ ];
285 $self->{version} = shift || 5401;
286 $self->{flags} = shift || Route::here(1);
289 $self->{lastid} = {};
290 $self->{PC92C_dxchan} = '';
291 $self->reset_obs; # by definition
293 $list{$call} = $self;
301 $call = shift if ref $call;
302 my $ref = $list{uc $call};
303 dbg("Failed to get Node $call" ) if !$ref && isdbg('routerr');
315 return $self->_addlist('parent', @_);
321 return $self->_dellist('parent', @_);
328 return $self->_addlist('nodes', @_);
334 return $self->_dellist('nodes', @_);
341 return $self->_addlist('users', @_);
347 return $self->_dellist('users', @_);
354 return $self->{obscount};
360 $self->{obscount} = $obscount;
367 my $call = $self->{call} || "Unknown";
369 dbg("destroying $pkg with $call") if isdbg('routelow');
373 # generic AUTOLOAD for accessors
379 my $name = $AUTOLOAD;
380 return if $name =~ /::DESTROY$/;
383 confess "Non-existant field '$AUTOLOAD'" unless $valid{$name} || $Route::valid{$name};
385 # this clever line of code creates a subroutine which takes over from autoload
386 # from OO Perl - Conway
387 *$AUTOLOAD = sub {$_[0]->{$name} = $_[1] if @_ > 1; return $_[0]->{$name}};