*** empty log message ***
[spider.git] / perl / Route / Node.pm
index 0c2b2e4a6f69c7d20449fc1005250a66f2869bda..a3cded54f095b08e565236b7f19f7bf5427d3aa5 100644 (file)
@@ -74,6 +74,7 @@ sub add
                return undef;
        }
        $self = $parent->new($call, @_);
+       $self->register;
        $parent->_addnode($self);
        return $self;
 }
@@ -145,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);
@@ -215,9 +217,6 @@ 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;
@@ -226,11 +225,16 @@ sub new
        $self->{nodes} = [];
        $self->{lid} = 0;
        
-       $list{$call} = $self;
-       
        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;
@@ -315,16 +319,16 @@ sub DESTROY
 sub AUTOLOAD
 {
        no strict;
-       my $name = $AUTOLOAD;
+
+       my $self = shift;
+       $name = $AUTOLOAD;
        return if $name =~ /::DESTROY$/;
-       $name =~ s/^.*:://o;
+       $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 {$_[0]->{$name} = $_[1] if @_ > 1; return $_[0]->{$name}};
-        goto &$AUTOLOAD;
+       *$AUTOLOAD = sub {@_ > 1 ? $_[0]->{$name} = $_[1] : $_[0]->{$name}};
+       &$AUTOLOAD($self, @_);
 }
 
 1;