1. make spot dups look back 5 mins.
[spider.git] / perl / Route / User.pm
index 274b26fee0e45fde0ed1a82a7fec8e931964bb18..e510a165e2736e1d78cac926f419a0678716e192 100644 (file)
@@ -13,45 +13,100 @@ use Route;
 
 use strict;
 
-use vars qw(%list %valid @ISA);
+use vars qw($VERSION $BRANCH);
+$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/ );
+$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /\d+\.\d+\.(\d+)\.(\d+)/ ) || 0;
+$main::build += $VERSION;
+$main::branch += $BRANCH;
+
+use vars qw(%list %valid @ISA $max $filterdef);
 @ISA = qw(Route);
 
 %valid = (
-                 node => '0,Node Calls,parray',
+                 parent => '0,Parent Calls,parray',
 );
 
+$filterdef = $Route::filterdef;
 %list = ();
+$max = 0;
+
+sub count
+{
+       my $n = scalar(keys %list);
+       $max = $n if $n > $max;
+       return $n;
+}
+
+sub max
+{
+       count();
+       return $max;
+}
 
 sub new
 {
        my $pkg = shift;
        my $call = uc shift;
+       my $ncall = uc shift;
+       my $flags = shift;
        confess "already have $call in $pkg" if $list{$call};
        
        my $self = $pkg->SUPER::new($call);
-       $self->{node} = [ ];
+       $self->{parent} = [ $ncall ];
+       $self->{flags} = $flags;
        $list{$call} = $self;
-       
+
        return $self;
 }
 
+sub del
+{
+       my $self = shift;
+       my $pref = shift;
+       my @out = $self->delparent($pref);
+       return @out;
+}
+
 sub get
 {
        my $call = shift;
        $call = shift if ref $call;
-       return $list{uc $call};
+       my $ref = $list{uc $call};
+       dbg("Failed to get User $call" ) if !$ref && isdbg('routerr');
+       return $ref;
 }
 
-sub addnode
+sub addparent
 {
        my $self = shift;
-    $self->_addlist('node', @_);
+    return $self->_addlist('parent', @_);
 }
 
-sub delnode
+sub delparent
 {
        my $self = shift;
-    $self->_dellist('node', @_);
+    return $self->_dellist('parent', @_);
+}
+
+#
+# generic AUTOLOAD for accessors
+#
+
+sub AUTOLOAD
+{
+       no strict;
+
+       my $self = shift;
+       $name = $AUTOLOAD;
+       return if $name =~ /::DESTROY$/;
+       $name =~ s/.*:://o;
+  
+       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
+#      *{$AUTOLOAD} = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}} ;
+    @_ ? $self->{$name} = shift : $self->{$name} ;
 }
 
 1;