X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FThingy%2FRt.pm;h=49f2bc616cc5167781421c13bf08b811496592d0;hb=ff16b769e7176ff0121d9993e2edd3f46d53a0e3;hp=4b533445a68ee42e1ce5dba88c80e473b86d33cc;hpb=1b51ec2cbffe9df6d7650d3daabec0885ddd7695;p=spider.git diff --git a/perl/Thingy/Rt.pm b/perl/Thingy/Rt.pm index 4b533445..49f2bc61 100644 --- a/perl/Thingy/Rt.pm +++ b/perl/Thingy/Rt.pm @@ -30,26 +30,31 @@ use vars qw(@ISA); sub gen_Aranea { my $thing = shift; + my $dxchan = shift; + unless ($thing->{Aranea}) { my $ref; if ($ref = $thing->{anodes}) { - $thing->{a} = join(':', map {"$_->{flags}$_->{call}"} @$ref); + $thing->{a} = join(':', map {"$_->{flags}$_->{call}"} @$ref) || ''; } - if ($ref = $thing->{anodes}) { - $thing->{n} = join(':', map {"$_->{flags}$_->{call}"} @$ref); + if ($ref = $thing->{pnodes}) { + $thing->{n} = join(':', map {"$_->{flags}$_->{call}"} @$ref) || ''; } if ($ref = $thing->{ausers}) { - $thing->{u} = join(':', map {"$_->{flags}$_->{call}"} @$ref); + $thing->{u} = join(':', map {"$_->{flags}$_->{call}"} @$ref) || ''; } $thing->{Aranea} = Aranea::genmsg($thing, [qw(s a n u)]); } + return $thing->{Aranea}; } sub from_Aranea { my $thing = shift; - return unless $thing; + $thing->{u} ||= ''; + $thing->{n} ||= ''; + $thing->{a} ||= ''; return $thing; } @@ -86,20 +91,24 @@ sub handle_cf } # do nodes - my ($del, $add); my %in; if ($thing->{n}) { - %in = (map {my ($here, $call) = unpack("A1 A*", $_); ($call, $here)} split /:/, $thing->{n}); - my ($tdel, $tadd) = $parent->diff_nodes(keys %in); - $add = $tadd; - $del = $tdel; + for (split(/:/, $thing->{n})) { + my ($here, $call) = unpack("A1 A*", $_); + unless ($call eq $main::mycall) { + $in{$call} = $here; + } + } } if ($thing->{a}) { - %in = (map {my ($here, $call) = unpack("A1 A*", $_); ($call, $here)} split /:/, $thing->{a}); - my ($tdel, $tadd) = $parent->diff_nodes(keys %in); - push @$add, @$tadd; - push @$del, @$tdel; + for (split(/:/, $thing->{a})) { + my ($here, $call) = unpack("A1 A*", $_); + unless ($call eq $main::mycall) { + $in{$call} = $here; + } + } } + my ($del, $add) = $parent->diff_nodes(keys %in); if ($add) { my @pc21; foreach my $call (@$del) { @@ -113,8 +122,8 @@ sub handle_cf my @pc19; foreach my $call (@$add) { RouteDB::update($call, $chan_call); - my $ref = Route::Node::get($call); - push @pc19, $parent->add($call, 0, $in{$call}) unless $ref; + my $here = $in{$call}; + push @pc19, $parent->add($call, 0, $here); } $thing->{pc19n} = \@pc19 if @pc19; } @@ -233,13 +242,9 @@ sub copy_pc16_data $thing->{'s'} = 'cf'; - my @u = $uref->users; - if (@u) { - $thing->{pc16n} = $uref; - $thing->{pc16u} = [map {Route::User::get($_)} @u]; - return scalar @u; - } - return undef; + my @u = map {Route::User::get($_)} $uref->users; + $thing->{ausers} = \@u if @u; + return @u; }