X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FRoute%2FNode.pm;h=d2105f8f6b6bcf57aea77391344f243c7af3681e;hb=f493dbf120a0a175a7788ee51c9928377b0f4c50;hp=a9bb2a44aa3f02deda232e301bc593ad6f43a2c3;hpb=fd0a34c34ad4112ee21e0730f7307498ff437e18;p=spider.git diff --git a/perl/Route/Node.pm b/perl/Route/Node.pm index a9bb2a44..d2105f8f 100644 --- a/perl/Route/Node.pm +++ b/perl/Route/Node.pm @@ -32,6 +32,7 @@ use vars qw(%list %valid @ISA $max $filterdef $obscount); via_pc92 => '0,Came in via pc92,yesno', obscount => '0,Obscount', last_PC92C => '9,Last PC92C', + PC92C_dxchan => '9,Channel of PC92C', ); $filterdef = $Route::filterdef; @@ -106,23 +107,35 @@ sub del push @nodes, $r->del($self, $ncall, @_) if $r; } $self->_del_users; - delete $list{$self->{call}}; + delete $list{$ncall}; push @nodes, $self; } return @nodes; } # this deletes this node completely by grabbing the parents -# and deleting me from them +# and deleting me from them, then deleting me from all the +# dependent nodes. sub delete { my $self = shift; my @out; + my $ncall = $self->{call}; + # get rid of users and parents $self->_del_users; - foreach my $call (@{$self->{parent}}) { - my $parent = Route::Node::get($call); - push @out, $parent->del($self) if $parent; + if (@{$self->{parent}}) { + foreach my $call (@{$self->{parent}}) { + my $parent = Route::Node::get($call); + push @out, $parent->del($self) if $parent; + } + } + # get rid of my nodes + push @out, $self->del_nodes; + # this only happens if we a orphan with no parents + if ($list{$ncall}) { + push @out, $self; + delete $list{$ncall}; } return @out; } @@ -274,6 +287,7 @@ sub new $self->{users} = []; $self->{nodes} = []; $self->{lastid} = {}; + $self->{PC92C_dxchan} = ''; $self->reset_obs; # by definition $list{$call} = $self;