*** empty log message ***
[spider.git] / perl / Route / Node.pm
index 2a9c585dbd91c23a9fc0d27413a2fbbf57bf35c7..a3cded54f095b08e565236b7f19f7bf5427d3aa5 100644 (file)
@@ -16,7 +16,7 @@ use strict;
 
 use vars qw($VERSION $BRANCH);
 $VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
-$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0;
+$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/  || (0,0));
 $main::build += $VERSION;
 $main::branch += $BRANCH;
 
@@ -29,6 +29,8 @@ use vars qw(%list %valid @ISA $max $filterdef);
                  users => '0,Users,parray',
                  usercount => '0,User Count',
                  version => '0,Version',
+                 np => '0,Using New Prot,yesno',
+                 lid => '0,Last Msgid',
 );
 
 $filterdef = $Route::filterdef;
@@ -72,6 +74,7 @@ sub add
                return undef;
        }
        $self = $parent->new($call, @_);
+       $self->register;
        $parent->_addnode($self);
        return $self;
 }
@@ -143,6 +146,7 @@ sub add_user
                @out = $uref->addparent($self);
        } else {
                $uref = Route::User->new($ucall, $self->{call}, @_);
+               $uref->register;
                @out = $uref;
        }
        $self->_adduser($uref);
@@ -213,21 +217,24 @@ sub new
 {
        my $pkg = shift;
        my $call = uc shift;
-       
-       confess "already have $call in $pkg" if $list{$call};
-       
        my $self = $pkg->SUPER::new($call);
        $self->{parent} = ref $pkg ? [ $pkg->{call} ] : [ ];
        $self->{version} = shift;
        $self->{flags} = shift;
        $self->{users} = [];
        $self->{nodes} = [];
-       
-       $list{$call} = $self;
+       $self->{lid} = 0;
        
        return $self;
 }
 
+sub register
+{
+       my $self = shift;
+       confess "already have $call in $pkg" if $list{$self->{call}};
+       $list{$call} = $self;
+}
+
 sub get
 {
        my $call = shift;
@@ -242,6 +249,22 @@ 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 > 60000) {
+               $self->{id} = $id;
+               return 1;
+       }
+       return 0;
+}
+
 sub _addparent
 {
        my $self = shift;
@@ -304,11 +327,8 @@ sub AUTOLOAD
   
        confess "Non-existant field '$AUTOLOAD'" unless $valid{$name} || $Route::valid{$name};
 
-       # this clever line of code creates a subroutine which takes over from autoload
-       # from OO Perl - Conway
-#      print "AUTOLOAD: $AUTOLOAD\n";
-#      *{$AUTOLOAD} = sub {my $self = shift; @_ ? $self->{$name} = shift : $self->{$name}} ;
-    @_ ? $self->{$name} = shift : $self->{$name} ;
+       *$AUTOLOAD = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}};
+       &$AUTOLOAD($self, @_);
 }
 
 1;