X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=perl%2FRoute%2FUser.pm;h=bc28dbef511053f809ce75171775d88a8e20feb9;hb=2b58ccdf81685a1167a43c38705a0d84b9d8d661;hp=274b26fee0e45fde0ed1a82a7fec8e931964bb18;hpb=fdc49835d7dc5573453567bd41e52c5e580ad8e7;p=spider.git diff --git a/perl/Route/User.pm b/perl/Route/User.pm index 274b26fe..bc28dbef 100644 --- a/perl/Route/User.pm +++ b/perl/Route/User.pm @@ -13,45 +13,101 @@ 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 +{ + 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 $ref = $self->delparent($pref->{call}); + return () if @$ref; + my @out = delete $list{$self->{call}}; + 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;