get some basic XML routines up and running.
[spider.git] / perl / Route / Node.pm
index d46733bbcdf295e05aafd649e34262e688fd904a..d3b1e955411833567a8b2551c55e19d1616b4136 100644 (file)
@@ -15,8 +15,10 @@ use Route::User;
 use strict;
 
 use vars qw($VERSION $BRANCH);
-
-main::mkver($VERSION = q$Revision$);
+$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
+$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/  || (0,0));
+$main::build += $VERSION;
+$main::branch += $BRANCH;
 
 use vars qw(%list %valid @ISA $max $filterdef);
 @ISA = qw(Route);
@@ -27,9 +29,9 @@ use vars qw(%list %valid @ISA $max $filterdef);
                  users => '0,Users,parray',
                  usercount => '0,User Count',
                  version => '0,Version',
-                 build => '0,Build',
-                 sw => '0,Software',
-                 np => '0,Using New Prot,yesno',
+                 handle_xml => '0,Using XML,yesno',
+                 lastmsg => '0,Last Route Msg,atime',
+                 lastid => '0,Last Route MsgID',
 );
 
 $filterdef = $Route::filterdef;
@@ -141,10 +143,10 @@ sub add_user
        my $uref = Route::User::get($ucall);
        my @out;
        if ($uref) {
-               push @out, $uref->addparent($self);
+               @out = $uref->addparent($self);
        } else {
                $uref = Route::User->new($ucall, $self->{call}, @_);
-               push @out, $uref;
+               @out = $uref;
        }
        $self->_adduser($uref);
        $self->{usercount} = scalar @{$self->{users}};
@@ -209,39 +211,6 @@ sub rnodes
        return @out;
 }
 
-# return the differences in nodes between what we currently have and
-# the list proffered. Returns two refs one to a list of nodes to remove and  
-# the other a list of nodes to add
-# 
-# input is a list of callsigns (not refs)
-sub diff_nodes
-{
-       my $self = shift;
-       my $in = ref $_[0] ? shift : \@_;
-       my %del = map {($_, 1)} nodes($self);
-       my %in = map {($_, 1)} @$in;
-       
-       # remove all the calls that are in both lists
-       for (@$in) {
-               delete $in{$_} if delete $del{$_};
-       }
-       return ([keys %del], [keys %in]);
-}
-
-# same as above but for users
-sub diff_users
-{
-       my $self = shift;
-       my $in = ref $_[0] ? shift : \@_;
-       my %del = map {($_, 1)} users($self);
-       my %in = map {($_, 1)} @$in;
-       
-       # remove all the calls that are in both lists
-       for (@$in) {
-               delete $in{$_} if delete $del{$_};
-       }
-       return ([keys %del], [keys %in]);
-}
 
 sub new
 {
@@ -252,11 +221,10 @@ sub new
        
        my $self = $pkg->SUPER::new($call);
        $self->{parent} = ref $pkg ? [ $pkg->{call} ] : [ ];
-       $self->{version} = 0 || shift;
-       $self->{flags} = 0 || shift;
+       $self->{version} = shift;
+       $self->{flags} = shift;
        $self->{users} = [];
        $self->{nodes} = [];
-       $self->{lid} = 0;
        
        $list{$call} = $self;
        
@@ -277,22 +245,6 @@ sub get_all
        return values %list;
 }
 
-sub newid
-{
-       my $self = shift;
-       my $id = shift;
-       
-       return 0 if $id == $self->{lid};
-       if ($id > $self->{lid}) {
-               $self->{lid} = $id;
-               return 1;
-       } elsif ($self->{lid} - $id > 500) {
-               $self->{id} = $id;
-               return 1;
-       }
-       return 0;
-}
-
 sub _addparent
 {
        my $self = shift;