# object with that callsign. The upper layers are expected to do something
# sensible with this!
#
-# called as $parent->add(call, dxchan, version, flags)
+# called as $parent->add(call, version, flags)
#
sub add
my $parent = shift;
my $call = uc shift;
confess "Route::add trying to add $call to myself" if $call eq $parent->{call};
+ my $version = shift;
+ my $here = shift;
+
my $self = get($call);
if ($self) {
$self->_addparent($parent);
$parent->_addnode($self);
+ if ($self->{version} != $version || $self->{flags} != $here) {
+ $self->{version} = $version;
+ $self->{flags} = $here;
+ return $self;
+ }
return undef;
}
- $self = $parent->new($call, @_);
+ $self = $parent->new($call, $version, $here);
$parent->_addnode($self);
return $self;
}
sub from_Aranea
{
my $thing = shift;
- return unless $thing;
+ $thing->{u} ||= '';
+ $thing->{n} ||= '';
+ $thing->{a} ||= '';
return $thing;
}
}
# 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*", $_);
+ $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*", $_);
+ $in{$call} = $here;
+ }
}
+ my ($del, $add) = $parent->diff_nodes(keys %in);
if ($add) {
my @pc21;
foreach my $call (@$del) {
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;
}
$thing->{'s'} = 'cf';
my @u = map {Route::User::get($_)} $uref->users;
- $thing->{ausers} = \@u;
+ $thing->{ausers} = \@u if @u;
return @u;
}