X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=perl%2FRoute%2FUser.pm;h=7bf19d44a5babf7c6d10a665fc0bb4e3cb0c35f8;hb=a931b090e0be3329bcbf7deddb7c17c30fa0e74a;hp=d492c27bf7769050d20878c7279f9ef4f7d90512;hpb=6624dcdf07d628e8d6a16fc6549edf40be25b7b2;p=spider.git diff --git a/perl/Route/User.pm b/perl/Route/User.pm index d492c27b..7bf19d44 100644 --- a/perl/Route/User.pm +++ b/perl/Route/User.pm @@ -13,11 +13,18 @@ use Route; use strict; +use vars qw($VERSION $BRANCH); +$VERSION = sprintf( "%d.%03d", q$Revision$ =~ /:\s+(\d+)\.(\d+)/ ); +$BRANCH = sprintf( "%d.%03d", q$Revision$ =~ /:\s+\d+\.\d+\.(\d+)\.(\d+)/ || (0,0)); +$main::build += $VERSION; +$main::branch += $BRANCH; + use vars qw(%list %valid @ISA $max $filterdef); @ISA = qw(Route); %valid = ( - parent => '0,Parent Calls,parray', + dxchan => '0,Dxchan List,parray', + nodes => '0,On Node(s),parray', ); $filterdef = $Route::filterdef; @@ -33,6 +40,7 @@ sub count sub max { + count(); return $max; } @@ -41,25 +49,27 @@ sub new my $pkg = shift; my $call = uc shift; my $ncall = uc shift; - my $flags = shift; + my $flags = shift || Route::here(1); confess "already have $call in $pkg" if $list{$call}; my $self = $pkg->SUPER::new($call); - $self->{parent} = [ $ncall ]; + $self->{nodes} = [ ]; $self->{flags} = $flags; $list{$call} = $self; return $self; } -sub del +sub delete { my $self = shift; - my $pref = shift; - my $ref = $self->delparent($pref->{call}); - return () if @$ref; - my @out = delete $list{$self->{call}}; - return @out; + dbg("deleting Route::User $self->{call}") if isdbg('routelow'); + delete $list{$self->{call}}; +} + +sub get_all +{ + return values %list; } sub get @@ -71,16 +81,44 @@ sub get return $ref; } -sub addparent +# add a user to this node +# returns Route::User if it is a new user; +sub add_node +{ + my ($self, $nref) = @_; + my $r = $self->is_empty('nodes'); + $self->_addlist('nodes', $nref); + $nref->_addlist('users', $self); + $nref->{usercount} = scalar @{$nref->{users}}; + return $r ? ($self) : (); +} + +# delete a user from this node +sub del_user +{ + my ($self, $nref) = @_; + + $self->_dellist('nodes', $nref); + $nref->_dellist('users', $self); + $nref->{usercount} = scalar @{$nref->{users}}; + return $self->is_empty('nodes') ? ($self) : (); +} + +sub nodes { my $self = shift; - return $self->_addlist('parent', @_); + return @{$self->{nodes}}; } -sub delparent +# +# pc59 entity encoding and decoding +# +sub enc_pc59 { my $self = shift; - return $self->_dellist('parent', @_); + my $sort = shift || 'U'; + my $out = "$sort$self->{flags}$self->{call}"; + return $out; } # @@ -90,18 +128,17 @@ sub delparent sub AUTOLOAD { no strict; - - my $self = shift; - $name = $AUTOLOAD; - return if $name =~ /::DESTROY$/; - $name =~ s/.*:://o; + my ($pkg,$name) = $AUTOLOAD =~ /^(.*)::(\w+)$/; + return if $name eq 'DESTROY'; 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} ; + *$AUTOLOAD = sub {$_[0]->{$name} = $_[1] if @_ > 1; return $_[0]->{$name}}; + goto &$AUTOLOAD; +# *{"${pkg}::$name"} = sub {$_[0]->{$name} = $_[1] if @_ > 1; return $_[0]->{$name}}; +# goto &{"${pkg}::$name"}; } 1;